deployment_parameters
Creates, updates, deletes, gets or lists a deployment_parameters resource.
Overview
| Name | deployment_parameters |
| Type | Resource |
| Id | aws.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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
put_deployment_parameter | replace | catalog, product_id, region, agreementId, deploymentParameter | Creates 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.
| Name | Datatype | Description |
|---|---|---|
catalog | string | The catalog related to the request. Fixed value: AWSMarketplace |
product_id | string | The product for which AWS Marketplace will save secrets for the buyer’s account. |
region | string | AWS region (default: us-east-1) |
REPLACE examples
- put_deployment_parameter
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;