import * as cdk from "../../core/lib"; import * as constructs from "constructs"; import * as cfn_parse from "../../core/lib/helpers-internal"; import { ISoftwareSetRef, SoftwareSetReference } from "../../interfaces/generated/aws-thinclient-interfaces.generated"; /** * Describes a software set for Amazon WorkSpaces Thin Client. * * @cloudformationResource AWS::ThinClient::SoftwareSet * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-thinclient-softwareset.html */ export declare class CfnSoftwareSet extends cdk.CfnResource implements cdk.IInspectable, ISoftwareSetRef, cdk.ITaggableV2 { /** * The CloudFormation resource type name for this resource class. */ static readonly CFN_RESOURCE_TYPE_NAME: string; /** * Build a CfnSoftwareSet 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): CfnSoftwareSet; /** * Checks whether the given object is a CfnSoftwareSet */ static isCfnSoftwareSet(x: any): x is CfnSoftwareSet; static arnForSoftwareSet(resource: ISoftwareSetRef): string; /** * Tag Manager which manages the tags for this resource */ readonly cdkTagManager: cdk.TagManager; /** * An array of key-value pairs to apply to this resource. */ private _tags?; protected readonly cfnPropertyNames: Record; /** * Create a new `AWS::ThinClient::SoftwareSet`. * * @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?: CfnSoftwareSetProps); get softwareSetRef(): SoftwareSetReference; /** * An array of key-value pairs to apply to this resource. */ get tags(): Array | undefined; /** * An array of key-value pairs to apply to this resource. */ set tags(value: Array | undefined); /** * The Amazon Resource Name (ARN) of the software set. * * @cloudformationAttribute Arn */ get attrArn(): string; /** * The ID of the software set. * * @cloudformationAttribute Id */ get attrId(): string; /** * The timestamp of when the software set was released. * * @cloudformationAttribute ReleasedAt */ get attrReleasedAt(): string; /** * A list of the software components in the software set. * * @cloudformationAttribute Software */ get attrSoftware(): cdk.IResolvable; /** * An option to define if the software set has been validated. * * @cloudformationAttribute ValidationStatus */ get attrValidationStatus(): string; /** * The version of the software set. * * @cloudformationAttribute Version */ get attrVersion(): string; protected get cfnProperties(): Record; /** * 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): Record; } export declare namespace CfnSoftwareSet { /** * Describes software. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-thinclient-softwareset-software.html */ interface SoftwareProperty { /** * The name of the software component. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-thinclient-softwareset-software.html#cfn-thinclient-softwareset-software-name */ readonly name?: string; /** * The version of the software component. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-thinclient-softwareset-software.html#cfn-thinclient-softwareset-software-version */ readonly version?: string; } } /** * Properties for defining a `CfnSoftwareSet` * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-thinclient-softwareset.html */ export interface CfnSoftwareSetProps { /** * An array of key-value pairs to apply to this resource. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-thinclient-softwareset.html#cfn-thinclient-softwareset-tags */ readonly tags?: Array; } export type { ISoftwareSetRef, SoftwareSetReference };