894 lines
46 KiB
TypeScript
894 lines
46 KiB
TypeScript
import * as cdk from "../../core/lib";
|
|
import * as constructs from "constructs";
|
|
import * as cfn_parse from "../../core/lib/helpers-internal";
|
|
import { IVolumeAssociationRef, IVolumeRef, IWorkspaceInstanceRef, VolumeAssociationReference, VolumeReference, WorkspaceInstanceReference } from "../../interfaces/generated/aws-workspacesinstances-interfaces.generated";
|
|
/**
|
|
* Resource Type definition for AWS::WorkspacesInstances::Volume - Manages WorkSpaces Volume resources.
|
|
*
|
|
* @cloudformationResource AWS::WorkspacesInstances::Volume
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesinstances-volume.html
|
|
*/
|
|
export declare class CfnVolume extends cdk.CfnResource implements cdk.IInspectable, IVolumeRef {
|
|
/**
|
|
* The CloudFormation resource type name for this resource class.
|
|
*/
|
|
static readonly CFN_RESOURCE_TYPE_NAME: string;
|
|
/**
|
|
* Build a CfnVolume from CloudFormation properties
|
|
*
|
|
* A factory method that creates a new instance of this class from an object
|
|
* containing the CloudFormation properties of this resource.
|
|
* Used in the @aws-cdk/cloudformation-include module.
|
|
*
|
|
* @internal
|
|
*/
|
|
static _fromCloudFormation(scope: constructs.Construct, id: string, resourceAttributes: any, options: cfn_parse.FromCloudFormationOptions): CfnVolume;
|
|
/**
|
|
* Checks whether the given object is a CfnVolume
|
|
*/
|
|
static isCfnVolume(x: any): x is CfnVolume;
|
|
/**
|
|
* The Availability Zone in which to create the volume.
|
|
*/
|
|
private _availabilityZone;
|
|
/**
|
|
* Indicates whether the volume should be encrypted.
|
|
*/
|
|
private _encrypted?;
|
|
/**
|
|
* The number of I/O operations per second (IOPS).
|
|
*/
|
|
private _iops?;
|
|
/**
|
|
* The identifier of the AWS Key Management Service (AWS KMS) customer master key (CMK) to use for Amazon EBS encryption.
|
|
*/
|
|
private _kmsKeyId?;
|
|
/**
|
|
* The size of the volume, in GiBs.
|
|
*/
|
|
private _sizeInGb?;
|
|
/**
|
|
* The snapshot from which to create the volume.
|
|
*/
|
|
private _snapshotId?;
|
|
/**
|
|
* The tags passed to EBS volume.
|
|
*/
|
|
private _tagSpecifications?;
|
|
/**
|
|
* The throughput to provision for a volume, with a maximum of 1,000 MiB/s.
|
|
*/
|
|
private _throughput?;
|
|
/**
|
|
* The volume type.
|
|
*/
|
|
private _volumeType?;
|
|
protected readonly cfnPropertyNames: Record<string, string>;
|
|
/**
|
|
* Create a new `AWS::WorkspacesInstances::Volume`.
|
|
*
|
|
* @param scope Scope in which this resource is defined
|
|
* @param id Construct identifier for this resource (unique in its scope)
|
|
* @param props Resource properties
|
|
*/
|
|
constructor(scope: constructs.Construct, id: string, props: CfnVolumeProps);
|
|
get volumeRef(): VolumeReference;
|
|
/**
|
|
* The Availability Zone in which to create the volume.
|
|
*/
|
|
get availabilityZone(): string;
|
|
/**
|
|
* The Availability Zone in which to create the volume.
|
|
*/
|
|
set availabilityZone(value: string);
|
|
/**
|
|
* Indicates whether the volume should be encrypted.
|
|
*/
|
|
get encrypted(): boolean | cdk.IResolvable | undefined;
|
|
/**
|
|
* Indicates whether the volume should be encrypted.
|
|
*/
|
|
set encrypted(value: boolean | cdk.IResolvable | undefined);
|
|
/**
|
|
* The number of I/O operations per second (IOPS).
|
|
*/
|
|
get iops(): number | undefined;
|
|
/**
|
|
* The number of I/O operations per second (IOPS).
|
|
*/
|
|
set iops(value: number | undefined);
|
|
/**
|
|
* The identifier of the AWS Key Management Service (AWS KMS) customer master key (CMK) to use for Amazon EBS encryption.
|
|
*/
|
|
get kmsKeyId(): string | undefined;
|
|
/**
|
|
* The identifier of the AWS Key Management Service (AWS KMS) customer master key (CMK) to use for Amazon EBS encryption.
|
|
*/
|
|
set kmsKeyId(value: string | undefined);
|
|
/**
|
|
* The size of the volume, in GiBs.
|
|
*/
|
|
get sizeInGb(): number | undefined;
|
|
/**
|
|
* The size of the volume, in GiBs.
|
|
*/
|
|
set sizeInGb(value: number | undefined);
|
|
/**
|
|
* The snapshot from which to create the volume.
|
|
*/
|
|
get snapshotId(): string | undefined;
|
|
/**
|
|
* The snapshot from which to create the volume.
|
|
*/
|
|
set snapshotId(value: string | undefined);
|
|
/**
|
|
* The tags passed to EBS volume.
|
|
*/
|
|
get tagSpecifications(): Array<cdk.IResolvable | CfnVolume.TagSpecificationProperty> | cdk.IResolvable | undefined;
|
|
/**
|
|
* The tags passed to EBS volume.
|
|
*/
|
|
set tagSpecifications(value: Array<cdk.IResolvable | CfnVolume.TagSpecificationProperty> | cdk.IResolvable | undefined);
|
|
/**
|
|
* The throughput to provision for a volume, with a maximum of 1,000 MiB/s.
|
|
*/
|
|
get throughput(): number | undefined;
|
|
/**
|
|
* The throughput to provision for a volume, with a maximum of 1,000 MiB/s.
|
|
*/
|
|
set throughput(value: number | undefined);
|
|
/**
|
|
* The volume type.
|
|
*/
|
|
get volumeType(): string | undefined;
|
|
/**
|
|
* The volume type.
|
|
*/
|
|
set volumeType(value: string | undefined);
|
|
/**
|
|
* Unique identifier for the volume
|
|
*
|
|
* @cloudformationAttribute VolumeId
|
|
*/
|
|
get attrVolumeId(): string;
|
|
protected get cfnProperties(): Record<string, any>;
|
|
/**
|
|
* Examines the CloudFormation resource and discloses attributes
|
|
*
|
|
* @param inspector tree inspector to collect and process attributes
|
|
*/
|
|
inspect(inspector: cdk.TreeInspector): void;
|
|
protected renderProperties(props: Record<string, any>): Record<string, any>;
|
|
}
|
|
export declare namespace CfnVolume {
|
|
/**
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-volume-tagspecification.html
|
|
*/
|
|
interface TagSpecificationProperty {
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-volume-tagspecification.html#cfn-workspacesinstances-volume-tagspecification-resourcetype
|
|
*/
|
|
readonly resourceType?: string;
|
|
/**
|
|
* The tags to apply to the resource.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-volume-tagspecification.html#cfn-workspacesinstances-volume-tagspecification-tags
|
|
*/
|
|
readonly tags?: Array<cdk.CfnTag>;
|
|
}
|
|
}
|
|
/**
|
|
* Properties for defining a `CfnVolume`
|
|
*
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesinstances-volume.html
|
|
*/
|
|
export interface CfnVolumeProps {
|
|
/**
|
|
* The Availability Zone in which to create the volume.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesinstances-volume.html#cfn-workspacesinstances-volume-availabilityzone
|
|
*/
|
|
readonly availabilityZone: string;
|
|
/**
|
|
* Indicates whether the volume should be encrypted.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesinstances-volume.html#cfn-workspacesinstances-volume-encrypted
|
|
*/
|
|
readonly encrypted?: boolean | cdk.IResolvable;
|
|
/**
|
|
* The number of I/O operations per second (IOPS).
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesinstances-volume.html#cfn-workspacesinstances-volume-iops
|
|
*/
|
|
readonly iops?: number;
|
|
/**
|
|
* The identifier of the AWS Key Management Service (AWS KMS) customer master key (CMK) to use for Amazon EBS encryption.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesinstances-volume.html#cfn-workspacesinstances-volume-kmskeyid
|
|
*/
|
|
readonly kmsKeyId?: string;
|
|
/**
|
|
* The size of the volume, in GiBs.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesinstances-volume.html#cfn-workspacesinstances-volume-sizeingb
|
|
*/
|
|
readonly sizeInGb?: number;
|
|
/**
|
|
* The snapshot from which to create the volume.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesinstances-volume.html#cfn-workspacesinstances-volume-snapshotid
|
|
*/
|
|
readonly snapshotId?: string;
|
|
/**
|
|
* The tags passed to EBS volume.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesinstances-volume.html#cfn-workspacesinstances-volume-tagspecifications
|
|
*/
|
|
readonly tagSpecifications?: Array<cdk.IResolvable | CfnVolume.TagSpecificationProperty> | cdk.IResolvable;
|
|
/**
|
|
* The throughput to provision for a volume, with a maximum of 1,000 MiB/s.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesinstances-volume.html#cfn-workspacesinstances-volume-throughput
|
|
*/
|
|
readonly throughput?: number;
|
|
/**
|
|
* The volume type.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesinstances-volume.html#cfn-workspacesinstances-volume-volumetype
|
|
*/
|
|
readonly volumeType?: string;
|
|
}
|
|
/**
|
|
* Resource Type definition for AWS::WorkspacesInstances::VolumeAssociation.
|
|
*
|
|
* @cloudformationResource AWS::WorkspacesInstances::VolumeAssociation
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesinstances-volumeassociation.html
|
|
*/
|
|
export declare class CfnVolumeAssociation extends cdk.CfnResource implements cdk.IInspectable, IVolumeAssociationRef {
|
|
/**
|
|
* The CloudFormation resource type name for this resource class.
|
|
*/
|
|
static readonly CFN_RESOURCE_TYPE_NAME: string;
|
|
/**
|
|
* Build a CfnVolumeAssociation from CloudFormation properties
|
|
*
|
|
* A factory method that creates a new instance of this class from an object
|
|
* containing the CloudFormation properties of this resource.
|
|
* Used in the @aws-cdk/cloudformation-include module.
|
|
*
|
|
* @internal
|
|
*/
|
|
static _fromCloudFormation(scope: constructs.Construct, id: string, resourceAttributes: any, options: cfn_parse.FromCloudFormationOptions): CfnVolumeAssociation;
|
|
/**
|
|
* Checks whether the given object is a CfnVolumeAssociation
|
|
*/
|
|
static isCfnVolumeAssociation(x: any): x is CfnVolumeAssociation;
|
|
/**
|
|
* The device name for the volume attachment.
|
|
*/
|
|
private _device;
|
|
/**
|
|
* Mode to use when disassociating the volume.
|
|
*/
|
|
private _disassociateMode?;
|
|
/**
|
|
* ID of the volume to attach to the workspace instance.
|
|
*/
|
|
private _volumeId;
|
|
/**
|
|
* ID of the workspace instance to associate with the volume.
|
|
*/
|
|
private _workspaceInstanceId;
|
|
protected readonly cfnPropertyNames: Record<string, string>;
|
|
/**
|
|
* Create a new `AWS::WorkspacesInstances::VolumeAssociation`.
|
|
*
|
|
* @param scope Scope in which this resource is defined
|
|
* @param id Construct identifier for this resource (unique in its scope)
|
|
* @param props Resource properties
|
|
*/
|
|
constructor(scope: constructs.Construct, id: string, props: CfnVolumeAssociationProps);
|
|
get volumeAssociationRef(): VolumeAssociationReference;
|
|
/**
|
|
* The device name for the volume attachment.
|
|
*/
|
|
get device(): string;
|
|
/**
|
|
* The device name for the volume attachment.
|
|
*/
|
|
set device(value: string);
|
|
/**
|
|
* Mode to use when disassociating the volume.
|
|
*/
|
|
get disassociateMode(): string | undefined;
|
|
/**
|
|
* Mode to use when disassociating the volume.
|
|
*/
|
|
set disassociateMode(value: string | undefined);
|
|
/**
|
|
* ID of the volume to attach to the workspace instance.
|
|
*/
|
|
get volumeId(): string;
|
|
/**
|
|
* ID of the volume to attach to the workspace instance.
|
|
*/
|
|
set volumeId(value: string);
|
|
/**
|
|
* ID of the workspace instance to associate with the volume.
|
|
*/
|
|
get workspaceInstanceId(): string;
|
|
/**
|
|
* ID of the workspace instance to associate with the volume.
|
|
*/
|
|
set workspaceInstanceId(value: string);
|
|
protected get cfnProperties(): Record<string, any>;
|
|
/**
|
|
* Examines the CloudFormation resource and discloses attributes
|
|
*
|
|
* @param inspector tree inspector to collect and process attributes
|
|
*/
|
|
inspect(inspector: cdk.TreeInspector): void;
|
|
protected renderProperties(props: Record<string, any>): Record<string, any>;
|
|
}
|
|
/**
|
|
* Properties for defining a `CfnVolumeAssociation`
|
|
*
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesinstances-volumeassociation.html
|
|
*/
|
|
export interface CfnVolumeAssociationProps {
|
|
/**
|
|
* The device name for the volume attachment.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesinstances-volumeassociation.html#cfn-workspacesinstances-volumeassociation-device
|
|
*/
|
|
readonly device: string;
|
|
/**
|
|
* Mode to use when disassociating the volume.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesinstances-volumeassociation.html#cfn-workspacesinstances-volumeassociation-disassociatemode
|
|
*/
|
|
readonly disassociateMode?: string;
|
|
/**
|
|
* ID of the volume to attach to the workspace instance.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesinstances-volumeassociation.html#cfn-workspacesinstances-volumeassociation-volumeid
|
|
*/
|
|
readonly volumeId: string;
|
|
/**
|
|
* ID of the workspace instance to associate with the volume.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesinstances-volumeassociation.html#cfn-workspacesinstances-volumeassociation-workspaceinstanceid
|
|
*/
|
|
readonly workspaceInstanceId: string;
|
|
}
|
|
/**
|
|
* Resource Type definition for AWS::WorkspacesInstances::WorkspaceInstance.
|
|
*
|
|
* @cloudformationResource AWS::WorkspacesInstances::WorkspaceInstance
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesinstances-workspaceinstance.html
|
|
*/
|
|
export declare class CfnWorkspaceInstance extends cdk.CfnResource implements cdk.IInspectable, IWorkspaceInstanceRef, cdk.ITaggableV2 {
|
|
/**
|
|
* The CloudFormation resource type name for this resource class.
|
|
*/
|
|
static readonly CFN_RESOURCE_TYPE_NAME: string;
|
|
/**
|
|
* Build a CfnWorkspaceInstance from CloudFormation properties
|
|
*
|
|
* A factory method that creates a new instance of this class from an object
|
|
* containing the CloudFormation properties of this resource.
|
|
* Used in the @aws-cdk/cloudformation-include module.
|
|
*
|
|
* @internal
|
|
*/
|
|
static _fromCloudFormation(scope: constructs.Construct, id: string, resourceAttributes: any, options: cfn_parse.FromCloudFormationOptions): CfnWorkspaceInstance;
|
|
/**
|
|
* Checks whether the given object is a CfnWorkspaceInstance
|
|
*/
|
|
static isCfnWorkspaceInstance(x: any): x is CfnWorkspaceInstance;
|
|
/**
|
|
* Creates a new IWorkspaceInstanceRef from a workspaceInstanceId
|
|
*/
|
|
static fromWorkspaceInstanceId(scope: constructs.Construct, id: string, workspaceInstanceId: string): IWorkspaceInstanceRef;
|
|
static arnForWorkspaceInstance(resource: IWorkspaceInstanceRef): string;
|
|
/**
|
|
* Tag Manager which manages the tags for this resource
|
|
*/
|
|
readonly cdkTagManager: cdk.TagManager;
|
|
private _managedInstance?;
|
|
private _tags?;
|
|
protected readonly cfnPropertyNames: Record<string, string>;
|
|
/**
|
|
* Create a new `AWS::WorkspacesInstances::WorkspaceInstance`.
|
|
*
|
|
* @param scope Scope in which this resource is defined
|
|
* @param id Construct identifier for this resource (unique in its scope)
|
|
* @param props Resource properties
|
|
*/
|
|
constructor(scope: constructs.Construct, id: string, props?: CfnWorkspaceInstanceProps);
|
|
get workspaceInstanceRef(): WorkspaceInstanceReference;
|
|
get managedInstance(): cdk.IResolvable | CfnWorkspaceInstance.ManagedInstanceProperty | undefined;
|
|
set managedInstance(value: cdk.IResolvable | CfnWorkspaceInstance.ManagedInstanceProperty | undefined);
|
|
get tags(): Array<cdk.CfnTag> | undefined;
|
|
set tags(value: Array<cdk.CfnTag> | undefined);
|
|
/**
|
|
* @cloudformationAttribute EC2ManagedInstance
|
|
*/
|
|
get attrEc2ManagedInstance(): cdk.IResolvable;
|
|
/**
|
|
* @cloudformationAttribute EC2ManagedInstance.InstanceId
|
|
*/
|
|
get attrEc2ManagedInstanceInstanceId(): string;
|
|
/**
|
|
* The current state of the workspace instance
|
|
*
|
|
* @cloudformationAttribute ProvisionState
|
|
*/
|
|
get attrProvisionState(): string;
|
|
/**
|
|
* Unique identifier for the workspace instance
|
|
*
|
|
* @cloudformationAttribute WorkspaceInstanceId
|
|
*/
|
|
get attrWorkspaceInstanceId(): string;
|
|
protected get cfnProperties(): Record<string, any>;
|
|
/**
|
|
* Examines the CloudFormation resource and discloses attributes
|
|
*
|
|
* @param inspector tree inspector to collect and process attributes
|
|
*/
|
|
inspect(inspector: cdk.TreeInspector): void;
|
|
protected renderProperties(props: Record<string, any>): Record<string, any>;
|
|
}
|
|
export declare namespace CfnWorkspaceInstance {
|
|
/**
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-managedinstance.html
|
|
*/
|
|
interface ManagedInstanceProperty {
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-managedinstance.html#cfn-workspacesinstances-workspaceinstance-managedinstance-blockdevicemappings
|
|
*/
|
|
readonly blockDeviceMappings?: Array<CfnWorkspaceInstance.BlockDeviceMappingProperty | cdk.IResolvable> | cdk.IResolvable;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-managedinstance.html#cfn-workspacesinstances-workspaceinstance-managedinstance-capacityreservationspecification
|
|
*/
|
|
readonly capacityReservationSpecification?: CfnWorkspaceInstance.CapacityReservationSpecificationProperty | cdk.IResolvable;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-managedinstance.html#cfn-workspacesinstances-workspaceinstance-managedinstance-cpuoptions
|
|
*/
|
|
readonly cpuOptions?: CfnWorkspaceInstance.CpuOptionsRequestProperty | cdk.IResolvable;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-managedinstance.html#cfn-workspacesinstances-workspaceinstance-managedinstance-creditspecification
|
|
*/
|
|
readonly creditSpecification?: CfnWorkspaceInstance.CreditSpecificationRequestProperty | cdk.IResolvable;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-managedinstance.html#cfn-workspacesinstances-workspaceinstance-managedinstance-disableapistop
|
|
*/
|
|
readonly disableApiStop?: boolean | cdk.IResolvable;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-managedinstance.html#cfn-workspacesinstances-workspaceinstance-managedinstance-ebsoptimized
|
|
*/
|
|
readonly ebsOptimized?: boolean | cdk.IResolvable;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-managedinstance.html#cfn-workspacesinstances-workspaceinstance-managedinstance-enableprimaryipv6
|
|
*/
|
|
readonly enablePrimaryIpv6?: boolean | cdk.IResolvable;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-managedinstance.html#cfn-workspacesinstances-workspaceinstance-managedinstance-enclaveoptions
|
|
*/
|
|
readonly enclaveOptions?: CfnWorkspaceInstance.EnclaveOptionsRequestProperty | cdk.IResolvable;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-managedinstance.html#cfn-workspacesinstances-workspaceinstance-managedinstance-hibernationoptions
|
|
*/
|
|
readonly hibernationOptions?: CfnWorkspaceInstance.HibernationOptionsRequestProperty | cdk.IResolvable;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-managedinstance.html#cfn-workspacesinstances-workspaceinstance-managedinstance-iaminstanceprofile
|
|
*/
|
|
readonly iamInstanceProfile?: CfnWorkspaceInstance.IamInstanceProfileSpecificationProperty | cdk.IResolvable;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-managedinstance.html#cfn-workspacesinstances-workspaceinstance-managedinstance-imageid
|
|
*/
|
|
readonly imageId: string;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-managedinstance.html#cfn-workspacesinstances-workspaceinstance-managedinstance-instancetype
|
|
*/
|
|
readonly instanceType: string;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-managedinstance.html#cfn-workspacesinstances-workspaceinstance-managedinstance-ipv6addresscount
|
|
*/
|
|
readonly ipv6AddressCount?: number;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-managedinstance.html#cfn-workspacesinstances-workspaceinstance-managedinstance-keyname
|
|
*/
|
|
readonly keyName?: string;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-managedinstance.html#cfn-workspacesinstances-workspaceinstance-managedinstance-licensespecifications
|
|
*/
|
|
readonly licenseSpecifications?: Array<cdk.IResolvable | CfnWorkspaceInstance.LicenseConfigurationRequestProperty> | cdk.IResolvable;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-managedinstance.html#cfn-workspacesinstances-workspaceinstance-managedinstance-maintenanceoptions
|
|
*/
|
|
readonly maintenanceOptions?: CfnWorkspaceInstance.InstanceMaintenanceOptionsRequestProperty | cdk.IResolvable;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-managedinstance.html#cfn-workspacesinstances-workspaceinstance-managedinstance-metadataoptions
|
|
*/
|
|
readonly metadataOptions?: CfnWorkspaceInstance.InstanceMetadataOptionsRequestProperty | cdk.IResolvable;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-managedinstance.html#cfn-workspacesinstances-workspaceinstance-managedinstance-monitoring
|
|
*/
|
|
readonly monitoring?: cdk.IResolvable | CfnWorkspaceInstance.RunInstancesMonitoringEnabledProperty;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-managedinstance.html#cfn-workspacesinstances-workspaceinstance-managedinstance-networkinterfaces
|
|
*/
|
|
readonly networkInterfaces?: Array<CfnWorkspaceInstance.InstanceNetworkInterfaceSpecificationProperty | cdk.IResolvable> | cdk.IResolvable;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-managedinstance.html#cfn-workspacesinstances-workspaceinstance-managedinstance-networkperformanceoptions
|
|
*/
|
|
readonly networkPerformanceOptions?: CfnWorkspaceInstance.InstanceNetworkPerformanceOptionsRequestProperty | cdk.IResolvable;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-managedinstance.html#cfn-workspacesinstances-workspaceinstance-managedinstance-placement
|
|
*/
|
|
readonly placement?: cdk.IResolvable | CfnWorkspaceInstance.PlacementProperty;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-managedinstance.html#cfn-workspacesinstances-workspaceinstance-managedinstance-privatednsnameoptions
|
|
*/
|
|
readonly privateDnsNameOptions?: cdk.IResolvable | CfnWorkspaceInstance.PrivateDnsNameOptionsRequestProperty;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-managedinstance.html#cfn-workspacesinstances-workspaceinstance-managedinstance-subnetid
|
|
*/
|
|
readonly subnetId?: string;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-managedinstance.html#cfn-workspacesinstances-workspaceinstance-managedinstance-tagspecifications
|
|
*/
|
|
readonly tagSpecifications?: Array<cdk.IResolvable | CfnWorkspaceInstance.TagSpecificationProperty> | cdk.IResolvable;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-managedinstance.html#cfn-workspacesinstances-workspaceinstance-managedinstance-userdata
|
|
*/
|
|
readonly userData?: string;
|
|
}
|
|
/**
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-blockdevicemapping.html
|
|
*/
|
|
interface BlockDeviceMappingProperty {
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-blockdevicemapping.html#cfn-workspacesinstances-workspaceinstance-blockdevicemapping-devicename
|
|
*/
|
|
readonly deviceName?: string;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-blockdevicemapping.html#cfn-workspacesinstances-workspaceinstance-blockdevicemapping-ebs
|
|
*/
|
|
readonly ebs?: CfnWorkspaceInstance.EbsBlockDeviceProperty | cdk.IResolvable;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-blockdevicemapping.html#cfn-workspacesinstances-workspaceinstance-blockdevicemapping-nodevice
|
|
*/
|
|
readonly noDevice?: string;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-blockdevicemapping.html#cfn-workspacesinstances-workspaceinstance-blockdevicemapping-virtualname
|
|
*/
|
|
readonly virtualName?: string;
|
|
}
|
|
/**
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-ebsblockdevice.html
|
|
*/
|
|
interface EbsBlockDeviceProperty {
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-ebsblockdevice.html#cfn-workspacesinstances-workspaceinstance-ebsblockdevice-encrypted
|
|
*/
|
|
readonly encrypted?: boolean | cdk.IResolvable;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-ebsblockdevice.html#cfn-workspacesinstances-workspaceinstance-ebsblockdevice-iops
|
|
*/
|
|
readonly iops?: number;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-ebsblockdevice.html#cfn-workspacesinstances-workspaceinstance-ebsblockdevice-kmskeyid
|
|
*/
|
|
readonly kmsKeyId?: string;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-ebsblockdevice.html#cfn-workspacesinstances-workspaceinstance-ebsblockdevice-throughput
|
|
*/
|
|
readonly throughput?: number;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-ebsblockdevice.html#cfn-workspacesinstances-workspaceinstance-ebsblockdevice-volumesize
|
|
*/
|
|
readonly volumeSize?: number;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-ebsblockdevice.html#cfn-workspacesinstances-workspaceinstance-ebsblockdevice-volumetype
|
|
*/
|
|
readonly volumeType?: string;
|
|
}
|
|
/**
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-capacityreservationspecification.html
|
|
*/
|
|
interface CapacityReservationSpecificationProperty {
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-capacityreservationspecification.html#cfn-workspacesinstances-workspaceinstance-capacityreservationspecification-capacityreservationpreference
|
|
*/
|
|
readonly capacityReservationPreference?: string;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-capacityreservationspecification.html#cfn-workspacesinstances-workspaceinstance-capacityreservationspecification-capacityreservationtarget
|
|
*/
|
|
readonly capacityReservationTarget?: CfnWorkspaceInstance.CapacityReservationTargetProperty | cdk.IResolvable;
|
|
}
|
|
/**
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-capacityreservationtarget.html
|
|
*/
|
|
interface CapacityReservationTargetProperty {
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-capacityreservationtarget.html#cfn-workspacesinstances-workspaceinstance-capacityreservationtarget-capacityreservationid
|
|
*/
|
|
readonly capacityReservationId?: string;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-capacityreservationtarget.html#cfn-workspacesinstances-workspaceinstance-capacityreservationtarget-capacityreservationresourcegrouparn
|
|
*/
|
|
readonly capacityReservationResourceGroupArn?: string;
|
|
}
|
|
/**
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-cpuoptionsrequest.html
|
|
*/
|
|
interface CpuOptionsRequestProperty {
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-cpuoptionsrequest.html#cfn-workspacesinstances-workspaceinstance-cpuoptionsrequest-corecount
|
|
*/
|
|
readonly coreCount?: number;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-cpuoptionsrequest.html#cfn-workspacesinstances-workspaceinstance-cpuoptionsrequest-threadspercore
|
|
*/
|
|
readonly threadsPerCore?: number;
|
|
}
|
|
/**
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-creditspecificationrequest.html
|
|
*/
|
|
interface CreditSpecificationRequestProperty {
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-creditspecificationrequest.html#cfn-workspacesinstances-workspaceinstance-creditspecificationrequest-cpucredits
|
|
*/
|
|
readonly cpuCredits?: string;
|
|
}
|
|
/**
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-enclaveoptionsrequest.html
|
|
*/
|
|
interface EnclaveOptionsRequestProperty {
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-enclaveoptionsrequest.html#cfn-workspacesinstances-workspaceinstance-enclaveoptionsrequest-enabled
|
|
*/
|
|
readonly enabled?: boolean | cdk.IResolvable;
|
|
}
|
|
/**
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-hibernationoptionsrequest.html
|
|
*/
|
|
interface HibernationOptionsRequestProperty {
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-hibernationoptionsrequest.html#cfn-workspacesinstances-workspaceinstance-hibernationoptionsrequest-configured
|
|
*/
|
|
readonly configured?: boolean | cdk.IResolvable;
|
|
}
|
|
/**
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-iaminstanceprofilespecification.html
|
|
*/
|
|
interface IamInstanceProfileSpecificationProperty {
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-iaminstanceprofilespecification.html#cfn-workspacesinstances-workspaceinstance-iaminstanceprofilespecification-arn
|
|
*/
|
|
readonly arn?: string;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-iaminstanceprofilespecification.html#cfn-workspacesinstances-workspaceinstance-iaminstanceprofilespecification-name
|
|
*/
|
|
readonly name?: string;
|
|
}
|
|
/**
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-licenseconfigurationrequest.html
|
|
*/
|
|
interface LicenseConfigurationRequestProperty {
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-licenseconfigurationrequest.html#cfn-workspacesinstances-workspaceinstance-licenseconfigurationrequest-licenseconfigurationarn
|
|
*/
|
|
readonly licenseConfigurationArn?: string;
|
|
}
|
|
/**
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-instancemaintenanceoptionsrequest.html
|
|
*/
|
|
interface InstanceMaintenanceOptionsRequestProperty {
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-instancemaintenanceoptionsrequest.html#cfn-workspacesinstances-workspaceinstance-instancemaintenanceoptionsrequest-autorecovery
|
|
*/
|
|
readonly autoRecovery?: string;
|
|
}
|
|
/**
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-instancemetadataoptionsrequest.html
|
|
*/
|
|
interface InstanceMetadataOptionsRequestProperty {
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-instancemetadataoptionsrequest.html#cfn-workspacesinstances-workspaceinstance-instancemetadataoptionsrequest-httpendpoint
|
|
*/
|
|
readonly httpEndpoint?: string;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-instancemetadataoptionsrequest.html#cfn-workspacesinstances-workspaceinstance-instancemetadataoptionsrequest-httpprotocolipv6
|
|
*/
|
|
readonly httpProtocolIpv6?: string;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-instancemetadataoptionsrequest.html#cfn-workspacesinstances-workspaceinstance-instancemetadataoptionsrequest-httpputresponsehoplimit
|
|
*/
|
|
readonly httpPutResponseHopLimit?: number;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-instancemetadataoptionsrequest.html#cfn-workspacesinstances-workspaceinstance-instancemetadataoptionsrequest-httptokens
|
|
*/
|
|
readonly httpTokens?: string;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-instancemetadataoptionsrequest.html#cfn-workspacesinstances-workspaceinstance-instancemetadataoptionsrequest-instancemetadatatags
|
|
*/
|
|
readonly instanceMetadataTags?: string;
|
|
}
|
|
/**
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-runinstancesmonitoringenabled.html
|
|
*/
|
|
interface RunInstancesMonitoringEnabledProperty {
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-runinstancesmonitoringenabled.html#cfn-workspacesinstances-workspaceinstance-runinstancesmonitoringenabled-enabled
|
|
*/
|
|
readonly enabled?: boolean | cdk.IResolvable;
|
|
}
|
|
/**
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-instancenetworkinterfacespecification.html
|
|
*/
|
|
interface InstanceNetworkInterfaceSpecificationProperty {
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-instancenetworkinterfacespecification.html#cfn-workspacesinstances-workspaceinstance-instancenetworkinterfacespecification-description
|
|
*/
|
|
readonly description?: string;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-instancenetworkinterfacespecification.html#cfn-workspacesinstances-workspaceinstance-instancenetworkinterfacespecification-deviceindex
|
|
*/
|
|
readonly deviceIndex?: number;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-instancenetworkinterfacespecification.html#cfn-workspacesinstances-workspaceinstance-instancenetworkinterfacespecification-groups
|
|
*/
|
|
readonly groups?: Array<string>;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-instancenetworkinterfacespecification.html#cfn-workspacesinstances-workspaceinstance-instancenetworkinterfacespecification-subnetid
|
|
*/
|
|
readonly subnetId?: string;
|
|
}
|
|
/**
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-instancenetworkperformanceoptionsrequest.html
|
|
*/
|
|
interface InstanceNetworkPerformanceOptionsRequestProperty {
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-instancenetworkperformanceoptionsrequest.html#cfn-workspacesinstances-workspaceinstance-instancenetworkperformanceoptionsrequest-bandwidthweighting
|
|
*/
|
|
readonly bandwidthWeighting?: string;
|
|
}
|
|
/**
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-placement.html
|
|
*/
|
|
interface PlacementProperty {
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-placement.html#cfn-workspacesinstances-workspaceinstance-placement-availabilityzone
|
|
*/
|
|
readonly availabilityZone?: string;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-placement.html#cfn-workspacesinstances-workspaceinstance-placement-groupid
|
|
*/
|
|
readonly groupId?: string;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-placement.html#cfn-workspacesinstances-workspaceinstance-placement-groupname
|
|
*/
|
|
readonly groupName?: string;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-placement.html#cfn-workspacesinstances-workspaceinstance-placement-partitionnumber
|
|
*/
|
|
readonly partitionNumber?: number;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-placement.html#cfn-workspacesinstances-workspaceinstance-placement-tenancy
|
|
*/
|
|
readonly tenancy?: string;
|
|
}
|
|
/**
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-privatednsnameoptionsrequest.html
|
|
*/
|
|
interface PrivateDnsNameOptionsRequestProperty {
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-privatednsnameoptionsrequest.html#cfn-workspacesinstances-workspaceinstance-privatednsnameoptionsrequest-enableresourcenamednsaaaarecord
|
|
*/
|
|
readonly enableResourceNameDnsAaaaRecord?: boolean | cdk.IResolvable;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-privatednsnameoptionsrequest.html#cfn-workspacesinstances-workspaceinstance-privatednsnameoptionsrequest-enableresourcenamednsarecord
|
|
*/
|
|
readonly enableResourceNameDnsARecord?: boolean | cdk.IResolvable;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-privatednsnameoptionsrequest.html#cfn-workspacesinstances-workspaceinstance-privatednsnameoptionsrequest-hostnametype
|
|
*/
|
|
readonly hostnameType?: string;
|
|
}
|
|
/**
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-tagspecification.html
|
|
*/
|
|
interface TagSpecificationProperty {
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-tagspecification.html#cfn-workspacesinstances-workspaceinstance-tagspecification-resourcetype
|
|
*/
|
|
readonly resourceType?: string;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-tagspecification.html#cfn-workspacesinstances-workspaceinstance-tagspecification-tags
|
|
*/
|
|
readonly tags?: Array<cdk.CfnTag>;
|
|
}
|
|
/**
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-ec2managedinstance.html
|
|
*/
|
|
interface EC2ManagedInstanceProperty {
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-ec2managedinstance.html#cfn-workspacesinstances-workspaceinstance-ec2managedinstance-instanceid
|
|
*/
|
|
readonly instanceId?: string;
|
|
}
|
|
}
|
|
/**
|
|
* Properties for defining a `CfnWorkspaceInstance`
|
|
*
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesinstances-workspaceinstance.html
|
|
*/
|
|
export interface CfnWorkspaceInstanceProps {
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesinstances-workspaceinstance.html#cfn-workspacesinstances-workspaceinstance-managedinstance
|
|
*/
|
|
readonly managedInstance?: cdk.IResolvable | CfnWorkspaceInstance.ManagedInstanceProperty;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesinstances-workspaceinstance.html#cfn-workspacesinstances-workspaceinstance-tags
|
|
*/
|
|
readonly tags?: Array<cdk.CfnTag>;
|
|
}
|
|
export type { IVolumeRef, VolumeReference };
|
|
export type { IVolumeAssociationRef, VolumeAssociationReference };
|
|
export type { IWorkspaceInstanceRef, WorkspaceInstanceReference };
|