Marketplace Deployment
This page documents function available when using the Marketplace_Deployment
module, created with @service Marketplace_Deployment
.
Index
Main.Marketplace_Deployment.list_tags_for_resource
Main.Marketplace_Deployment.put_deployment_parameter
Main.Marketplace_Deployment.tag_resource
Main.Marketplace_Deployment.untag_resource
Documentation
Main.Marketplace_Deployment.list_tags_for_resource
— Methodlist_tags_for_resource(resource_arn)
list_tags_for_resource(resource_arn, params::Dict{String,<:Any})
Lists all tags that have been added to a deployment parameter resource.
Arguments
resource_arn
: The Amazon Resource Name (ARN) associated with the deployment parameter resource you want to list tags on.
Main.Marketplace_Deployment.put_deployment_parameter
— Methodput_deployment_parameter(agreement_id, catalog, deployment_parameter, product_id)
put_deployment_parameter(agreement_id, catalog, deployment_parameter, product_id, params::Dict{String,<:Any})
Creates or updates a deployment parameter and is targeted by catalog and agreementId.
Arguments
agreement_id
: The unique identifier of the agreement.catalog
: The catalog related to the request. Fixed value: AWS Marketplacedeployment_parameter
: The deployment parameter targeted to the acceptor of an agreement for which to create the AWS Secret Manager resource.product_id
: The product for which AWS Marketplace will save secrets for the buyer’s account.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"clientToken"
: The idempotency token for deployment parameters. A unique identifier for the new version."expirationDate"
: The date when deployment parameters expire and are scheduled for deletion."tags"
: A map of key-value pairs, where each pair represents a tag saved to the resource. Tags will only be applied for create operations, and they'll be ignored if the resource already exists.
Main.Marketplace_Deployment.tag_resource
— Methodtag_resource(resource_arn)
tag_resource(resource_arn, params::Dict{String,<:Any})
Tags a resource.
Arguments
resource_arn
: The Amazon Resource Name (ARN) associated with the resource you want to tag.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"tags"
: A map of key-value pairs, where each pair represents a tag present on the resource.
Main.Marketplace_Deployment.untag_resource
— Methoduntag_resource(resource_arn, tag_keys)
untag_resource(resource_arn, tag_keys, params::Dict{String,<:Any})
Removes a tag or list of tags from a resource.
Arguments
resource_arn
: The Amazon Resource Name (ARN) associated with the resource you want to remove the tag from.tag_keys
: A list of key names of tags to be removed.