@Stability(value=Stable)
public static interface CfnDistributionConfiguration.FastLaunchConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDistributionConfiguration.FastLaunchConfigurationProperty.Builder
|
static class |
CfnDistributionConfiguration.FastLaunchConfigurationProperty.Jsii$Proxy
An implementation for
CfnDistributionConfiguration.FastLaunchConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDistributionConfiguration.FastLaunchConfigurationProperty.Builder |
builder() |
default String |
getAccountId()
The owner account ID for the fast-launch enabled Windows AMI.
|
default Object |
getEnabled()
A Boolean that represents the current state of faster launching for the Windows AMI.
|
default Object |
getLaunchTemplate()
The launch template that the fast-launch enabled Windows AMI uses when it launches Windows instances to create pre-provisioned snapshots.
|
default Number |
getMaxParallelLaunches()
The maximum number of parallel instances that are launched for creating resources.
|
default Object |
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.
|
@Stability(value=Stable) @Nullable default String getAccountId()
@Stability(value=Stable) @Nullable default Object getEnabled()
Set to true to start using Windows faster launching, or false to stop using it.
@Stability(value=Stable) @Nullable default Object getLaunchTemplate()
@Stability(value=Stable) @Nullable default Number getMaxParallelLaunches()
@Stability(value=Stable) @Nullable default Object getSnapshotConfiguration()
@Stability(value=Stable) static CfnDistributionConfiguration.FastLaunchConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.