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: