Interface CfnDistributionConfiguration.SsmParameterConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDistributionConfiguration.SsmParameterConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDistributionConfiguration
@Stability(Stable)
public static interface CfnDistributionConfiguration.SsmParameterConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.imagebuilder.*;
SsmParameterConfigurationProperty ssmParameterConfigurationProperty = SsmParameterConfigurationProperty.builder()
.parameterName("parameterName")
// the properties below are optional
.amiAccountId("amiAccountId")
.dataType("dataType")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDistributionConfiguration.SsmParameterConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getParameterName
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.
- See Also:
-
getAmiAccountId
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.
- See Also:
-
getDataType
The data type specifies what type of value the Parameter contains.We recommend that you use data type
aws:ec2:image.- See Also:
-
builder
@Stability(Stable) static CfnDistributionConfiguration.SsmParameterConfigurationProperty.Builder builder()
-