Interface CfnDistributionConfigurationMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDistributionConfigurationMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:00.039Z")
@Stability(Stable)
public interface CfnDistributionConfigurationMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnDistributionConfigurationPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.imagebuilder.*;
Object amiDistributionConfiguration;
Object containerDistributionConfiguration;
CfnDistributionConfigurationMixinProps cfnDistributionConfigurationMixinProps = CfnDistributionConfigurationMixinProps.builder()
.description("description")
.distributions(List.of(DistributionProperty.builder()
.amiDistributionConfiguration(amiDistributionConfiguration)
.containerDistributionConfiguration(containerDistributionConfiguration)
.fastLaunchConfigurations(List.of(FastLaunchConfigurationProperty.builder()
.accountId("accountId")
.enabled(false)
.launchTemplate(FastLaunchLaunchTemplateSpecificationProperty.builder()
.launchTemplateId("launchTemplateId")
.launchTemplateName("launchTemplateName")
.launchTemplateVersion("launchTemplateVersion")
.build())
.maxParallelLaunches(123)
.snapshotConfiguration(FastLaunchSnapshotConfigurationProperty.builder()
.targetResourceCount(123)
.build())
.build()))
.launchTemplateConfigurations(List.of(LaunchTemplateConfigurationProperty.builder()
.accountId("accountId")
.launchTemplateId("launchTemplateId")
.setDefaultVersion(false)
.build()))
.licenseConfigurationArns(List.of("licenseConfigurationArns"))
.region("region")
.ssmParameterConfigurations(List.of(SsmParameterConfigurationProperty.builder()
.amiAccountId("amiAccountId")
.dataType("dataType")
.parameterName("parameterName")
.build()))
.build()))
.name("name")
.tags(Map.of(
"tagsKey", "tags"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDistributionConfigurationMixinPropsstatic final classAn implementation forCfnDistributionConfigurationMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe description of this distribution configuration.default ObjectThe distributions of this distribution configuration formatted as an array of Distribution objects.default StringgetName()The name of this distribution configuration.getTags()The tags of this distribution configuration.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
The description of this distribution configuration.- See Also:
-
getDistributions
The distributions of this distribution configuration formatted as an array of Distribution objects.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnDistributionConfigurationPropsMixin.DistributionProperty>- See Also:
-
getName
The name of this distribution configuration.- See Also:
-
getTags
The tags of this distribution configuration.- See Also:
-
builder
-