interface SSMParameterConfigurations
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ImageBuilder.Alpha.SSMParameterConfigurations |
Go | github.com/aws/aws-cdk-go/awsimagebuilderalpha/v2#SSMParameterConfigurations |
Java | software.amazon.awscdk.services.imagebuilder.alpha.SSMParameterConfigurations |
Python | aws_cdk.aws_imagebuilder_alpha.SSMParameterConfigurations |
TypeScript (source) | @aws-cdk/aws-imagebuilder-alpha ยป SSMParameterConfigurations |
The SSM parameters to create or update for the distributed AMIs.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as imagebuilder_alpha from '@aws-cdk/aws-imagebuilder-alpha';
import { aws_ssm as ssm } from 'aws-cdk-lib';
declare const stringParameter: ssm.StringParameter;
const sSMParameterConfigurations: imagebuilder_alpha.SSMParameterConfigurations = {
parameter: stringParameter,
// the properties below are optional
amiAccount: 'amiAccount',
dataType: ssm.ParameterDataType.TEXT,
};
Properties
| Name | Type | Description |
|---|---|---|
| parameter | IString | The SSM parameter to create or update. |
| ami | string | The AWS account ID that will own the SSM parameter in the given region. |
| data | Parameter | The data type of the SSM parameter. |
parameter
Type:
IString
The SSM parameter to create or update.
amiAccount?
Type:
string
(optional, default: The current account is used)
The AWS account ID that will own the SSM parameter in the given region.
This must be one of the target accounts that was included in the list of AMI distribution target accounts
dataType?
Type:
Parameter
(optional, default: ssm.ParameterDataType.AWS_EC2_IMAGE)
The data type of the SSM parameter.

.NET
Go
Java
Python
TypeScript (