Interface CfnDistributionConfiguration.FastLaunchConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDistributionConfiguration.FastLaunchConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDistributionConfiguration
@Stability(Stable)
public static interface CfnDistributionConfiguration.FastLaunchConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Define and configure faster launching for output Windows AMIs.
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.*; FastLaunchConfigurationProperty fastLaunchConfigurationProperty = 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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnDistributionConfiguration.FastLaunchConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The owner account ID for the fast-launch enabled Windows AMI.default Object
A Boolean that represents the current state of faster launching for the Windows AMI.default Object
The launch template that the fast-launch enabled Windows AMI uses when it launches Windows instances to create pre-provisioned snapshots.default Number
The maximum number of parallel instances that are launched for creating resources.default Object
Configuration settings for managing the number of snapshots that are created from pre-provisioned instances for the Windows AMI when faster launching is enabled.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccountId
The owner account ID for the fast-launch enabled Windows AMI.- See Also:
-
getEnabled
A Boolean that represents the current state of faster launching for the Windows AMI.Set to
true
to start using Windows faster launching, orfalse
to stop using it.- See Also:
-
getLaunchTemplate
The launch template that the fast-launch enabled Windows AMI uses when it launches Windows instances to create pre-provisioned snapshots.- See Also:
-
getMaxParallelLaunches
The maximum number of parallel instances that are launched for creating resources.- See Also:
-
getSnapshotConfiguration
Configuration settings for managing the number of snapshots that are created from pre-provisioned instances for the Windows AMI when faster launching is enabled.- See Also:
-
builder
@Stability(Stable) static CfnDistributionConfiguration.FastLaunchConfigurationProperty.Builder builder()
-