interface SsmParameterConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ImageBuilder.Mixins.CfnDistributionConfigurationPropsMixin.SsmParameterConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsimagebuilder/mixins#CfnDistributionConfigurationPropsMixin_SsmParameterConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.imagebuilder.mixins.CfnDistributionConfigurationPropsMixin.SsmParameterConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_imagebuilder.mixins.CfnDistributionConfigurationPropsMixin.SsmParameterConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_imagebuilder » mixins » CfnDistributionConfigurationPropsMixin » SsmParameterConfigurationProperty |
Configuration for a single Parameter in the AWS Systems Manager (SSM) Parameter Store in a given Region.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as imagebuilder_mixins } from '@aws-cdk/mixins-preview/aws-imagebuilder';
const ssmParameterConfigurationProperty: imagebuilder_mixins.CfnDistributionConfigurationPropsMixin.SsmParameterConfigurationProperty = {
amiAccountId: 'amiAccountId',
dataType: 'dataType',
parameterName: 'parameterName',
};
Properties
| Name | Type | Description |
|---|---|---|
| ami | string | Specify the account that will own the Parameter in a given Region. |
| data | string | The data type specifies what type of value the Parameter contains. |
| parameter | string | This is the name of the Parameter in the target Region or account. |
amiAccountId?
Type:
string
(optional)
Specify the account that will own the Parameter in a given Region.
During distribution, this account must be specified in distribution settings as a target account for the Region.
dataType?
Type:
string
(optional)
The data type specifies what type of value the Parameter contains.
We recommend that you use data type aws:ec2:image .
parameterName?
Type:
string
(optional)
This is the name of the Parameter in the target Region or account.
The image distribution creates the Parameter if it doesn't already exist. Otherwise, it updates the parameter.

.NET
Go
Java
Python
TypeScript