import * as cdk from "../../core/lib"; import * as constructs from "constructs"; import * as cfn_parse from "../../core/lib/helpers-internal"; import { ILensRef, IProfileRef, IReviewTemplateRef, LensReference, ProfileReference, ReviewTemplateReference } from "../../interfaces/generated/aws-wellarchitected-interfaces.generated"; /** * Definition of AWS::WellArchitected::Lens Resource Type. * * @cloudformationResource AWS::WellArchitected::Lens * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wellarchitected-lens.html */ export declare class CfnLens extends cdk.CfnResource implements cdk.IInspectable, ILensRef, cdk.ITaggableV2 { /** * The CloudFormation resource type name for this resource class. */ static readonly CFN_RESOURCE_TYPE_NAME: string; /** * Build a CfnLens 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): CfnLens; /** * Checks whether the given object is a CfnLens */ static isCfnLens(x: any): x is CfnLens; static arnForLens(resource: ILensRef): string; /** * Tag Manager which manages the tags for this resource */ readonly cdkTagManager: cdk.TagManager; /** * The JSON representation of a lens. */ private _jsonString?; /** * The version of the lens. */ private _lensVersion?; /** * The tags assigned to the lens. */ private _tags?; protected readonly cfnPropertyNames: Record; /** * Create a new `AWS::WellArchitected::Lens`. * * @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?: CfnLensProps); get lensRef(): LensReference; /** * The JSON representation of a lens. */ get jsonString(): string | undefined; /** * The JSON representation of a lens. */ set jsonString(value: string | undefined); /** * The version of the lens. */ get lensVersion(): string | undefined; /** * The version of the lens. */ set lensVersion(value: string | undefined); /** * The tags assigned to the lens. */ get tags(): Array | undefined; /** * The tags assigned to the lens. */ set tags(value: Array | undefined); /** * The description of the lens. * * @cloudformationAttribute Description */ get attrDescription(): string; /** * The ARN of the lens. * * @cloudformationAttribute LensArn */ get attrLensArn(): string; /** * The unique identifier of the lens. * * @cloudformationAttribute LensId */ get attrLensId(): string; /** * The full name of the lens. * * @cloudformationAttribute Name */ get attrName(): string; /** * The Amazon Web Services account ID that owns the lens. * * @cloudformationAttribute Owner */ get attrOwner(): 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 CfnLens { /** * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wellarchitected-lens-tagsitems.html */ interface TagsItemsProperty { /** * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wellarchitected-lens-tagsitems.html#cfn-wellarchitected-lens-tagsitems-key */ readonly key: string; /** * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wellarchitected-lens-tagsitems.html#cfn-wellarchitected-lens-tagsitems-value */ readonly value: string; } } /** * Properties for defining a `CfnLens` * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wellarchitected-lens.html */ export interface CfnLensProps { /** * The JSON representation of a lens. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wellarchitected-lens.html#cfn-wellarchitected-lens-jsonstring */ readonly jsonString?: string; /** * The version of the lens. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wellarchitected-lens.html#cfn-wellarchitected-lens-lensversion */ readonly lensVersion?: string; /** * The tags assigned to the lens. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wellarchitected-lens.html#cfn-wellarchitected-lens-tags */ readonly tags?: Array; } /** * Definition of AWS::WellArchitected::Profile Resource Type. * * @cloudformationResource AWS::WellArchitected::Profile * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wellarchitected-profile.html */ export declare class CfnProfile extends cdk.CfnResource implements cdk.IInspectable, IProfileRef, cdk.ITaggableV2 { /** * The CloudFormation resource type name for this resource class. */ static readonly CFN_RESOURCE_TYPE_NAME: string; /** * Build a CfnProfile 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): CfnProfile; /** * Checks whether the given object is a CfnProfile */ static isCfnProfile(x: any): x is CfnProfile; static arnForProfile(resource: IProfileRef): string; /** * Tag Manager which manages the tags for this resource */ readonly cdkTagManager: cdk.TagManager; /** * The profile description. */ private _profileDescription; /** * The name of the profile. */ private _profileName; /** * The profile questions. */ private _profileQuestions; /** * The tags assigned to the profile. */ private _tags?; protected readonly cfnPropertyNames: Record; /** * Create a new `AWS::WellArchitected::Profile`. * * @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: CfnProfileProps); get profileRef(): ProfileReference; /** * The profile description. */ get profileDescription(): string; /** * The profile description. */ set profileDescription(value: string); /** * The name of the profile. */ get profileName(): string; /** * The name of the profile. */ set profileName(value: string); /** * The profile questions. */ get profileQuestions(): Array | cdk.IResolvable; /** * The profile questions. */ set profileQuestions(value: Array | cdk.IResolvable); /** * The tags assigned to the profile. */ get tags(): Array | undefined; /** * The tags assigned to the profile. */ set tags(value: Array | undefined); /** * The date and time the profile was created. * * @cloudformationAttribute CreatedAt */ get attrCreatedAt(): string; /** * The owner of the profile. * * @cloudformationAttribute Owner */ get attrOwner(): string; /** * The profile ARN. * * @cloudformationAttribute ProfileArn */ get attrProfileArn(): string; /** * The profile version. * * @cloudformationAttribute ProfileVersion */ get attrProfileVersion(): string; /** * The date and time the profile was last updated. * * @cloudformationAttribute UpdatedAt */ get attrUpdatedAt(): 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 CfnProfile { /** * An update to a profile question. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wellarchitected-profile-profilequestionupdate.html */ interface ProfileQuestionUpdateProperty { /** * The ID of the question. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wellarchitected-profile-profilequestionupdate.html#cfn-wellarchitected-profile-profilequestionupdate-questionid */ readonly questionId?: string; /** * The selected choices. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wellarchitected-profile-profilequestionupdate.html#cfn-wellarchitected-profile-profilequestionupdate-selectedchoiceids */ readonly selectedChoiceIds?: Array; } } /** * Properties for defining a `CfnProfile` * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wellarchitected-profile.html */ export interface CfnProfileProps { /** * The profile description. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wellarchitected-profile.html#cfn-wellarchitected-profile-profiledescription */ readonly profileDescription: string; /** * The name of the profile. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wellarchitected-profile.html#cfn-wellarchitected-profile-profilename */ readonly profileName: string; /** * The profile questions. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wellarchitected-profile.html#cfn-wellarchitected-profile-profilequestions */ readonly profileQuestions: Array | cdk.IResolvable; /** * The tags assigned to the profile. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wellarchitected-profile.html#cfn-wellarchitected-profile-tags */ readonly tags?: Array; } /** * Creates a review template for the Well-Architected Tool. * * @cloudformationResource AWS::WellArchitected::ReviewTemplate * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wellarchitected-reviewtemplate.html */ export declare class CfnReviewTemplate extends cdk.CfnResource implements cdk.IInspectable, IReviewTemplateRef, cdk.ITaggableV2 { /** * The CloudFormation resource type name for this resource class. */ static readonly CFN_RESOURCE_TYPE_NAME: string; /** * Build a CfnReviewTemplate 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): CfnReviewTemplate; /** * Checks whether the given object is a CfnReviewTemplate */ static isCfnReviewTemplate(x: any): x is CfnReviewTemplate; /** * Tag Manager which manages the tags for this resource */ readonly cdkTagManager: cdk.TagManager; /** * The review template description. */ private _description; /** * The lenses applied to the review template. */ private _lenses; /** * The notes associated with the review template. */ private _notes?; /** * The tags assigned to the review template. */ private _tags?; /** * The name of the review template. */ private _templateName; protected readonly cfnPropertyNames: Record; /** * Create a new `AWS::WellArchitected::ReviewTemplate`. * * @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: CfnReviewTemplateProps); get reviewTemplateRef(): ReviewTemplateReference; /** * The review template description. */ get description(): string; /** * The review template description. */ set description(value: string); /** * The lenses applied to the review template. */ get lenses(): Array; /** * The lenses applied to the review template. */ set lenses(value: Array); /** * The notes associated with the review template. */ get notes(): string | undefined; /** * The notes associated with the review template. */ set notes(value: string | undefined); /** * The tags assigned to the review template. */ get tags(): Array | undefined; /** * The tags assigned to the review template. */ set tags(value: Array | undefined); /** * The name of the review template. */ get templateName(): string; /** * The name of the review template. */ set templateName(value: string); /** * The owner of the review template. * * @cloudformationAttribute Owner */ get attrOwner(): string; /** * The review template ARN. * * @cloudformationAttribute TemplateArn */ get attrTemplateArn(): string; /** * The date and time the review template was last updated. * * @cloudformationAttribute UpdatedAt */ get attrUpdatedAt(): string; /** * The latest status of the review template. * * @cloudformationAttribute UpdateStatus */ get attrUpdateStatus(): 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 CfnReviewTemplate { /** * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wellarchitected-reviewtemplate-tagsitems.html */ interface TagsItemsProperty { /** * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wellarchitected-reviewtemplate-tagsitems.html#cfn-wellarchitected-reviewtemplate-tagsitems-key */ readonly key: string; /** * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wellarchitected-reviewtemplate-tagsitems.html#cfn-wellarchitected-reviewtemplate-tagsitems-value */ readonly value: string; } } /** * Properties for defining a `CfnReviewTemplate` * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wellarchitected-reviewtemplate.html */ export interface CfnReviewTemplateProps { /** * The review template description. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wellarchitected-reviewtemplate.html#cfn-wellarchitected-reviewtemplate-description */ readonly description: string; /** * The lenses applied to the review template. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wellarchitected-reviewtemplate.html#cfn-wellarchitected-reviewtemplate-lenses */ readonly lenses: Array; /** * The notes associated with the review template. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wellarchitected-reviewtemplate.html#cfn-wellarchitected-reviewtemplate-notes */ readonly notes?: string; /** * The tags assigned to the review template. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wellarchitected-reviewtemplate.html#cfn-wellarchitected-reviewtemplate-tags */ readonly tags?: Array; /** * The name of the review template. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wellarchitected-reviewtemplate.html#cfn-wellarchitected-reviewtemplate-templatename */ readonly templateName: string; } export type { ILensRef, LensReference }; export type { IProfileRef, ProfileReference }; export type { IReviewTemplateRef, ReviewTemplateReference };