Skip to main content

deployment_parameters

Creates, updates, deletes, gets or lists a deployment_parameters resource.

Overview

Namedeployment_parameters
TypeResource
Idaws.marketplace_deployment.deployment_parameters

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
put_deployment_parameterreplacecatalog, product_id, region, agreementId, deploymentParameterCreates or updates a deployment parameter and is targeted by catalog and agreementId.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
catalogstringThe catalog related to the request. Fixed value: AWSMarketplace
product_idstringThe product for which AWS Marketplace will save secrets for the buyer’s account.
regionstringAWS region (default: us-east-1)

REPLACE examples

Creates or updates a deployment parameter and is targeted by catalog and agreementId.

REPLACE aws.marketplace_deployment.deployment_parameters
SET
agreementId = '{{ agreementId }}',
clientToken = '{{ clientToken }}',
deploymentParameter = '{{ deploymentParameter }}',
expirationDate = '{{ expirationDate }}',
tags = '{{ tags }}'
WHERE
catalog = '{{ catalog }}' --required
AND product_id = '{{ product_id }}' --required
AND region = '{{ region }}' --required
AND agreementId = '{{ agreementId }}' --required
AND deploymentParameter = '{{ deploymentParameter }}' --required
RETURNING
agreement_id,
deployment_parameter_id,
resource_arn,
tags;