import * as cdk from "../../core/lib"; import * as constructs from "constructs"; import * as cfn_parse from "../../core/lib/helpers-internal"; import { IObjectiveRef, ObjectiveReference } from "../../interfaces/generated/aws-controlcatalog-interfaces.generated"; /** * Returns information about an objective in the AWS Control Catalog. * * @cloudformationResource AWS::ControlCatalog::Objective * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-controlcatalog-objective.html */ export declare class CfnObjective extends cdk.CfnResource implements cdk.IInspectable, IObjectiveRef { /** * The CloudFormation resource type name for this resource class. */ static readonly CFN_RESOURCE_TYPE_NAME: string; /** * Build a CfnObjective 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): CfnObjective; /** * Checks whether the given object is a CfnObjective */ static isCfnObjective(x: any): x is CfnObjective; static arnForObjective(resource: IObjectiveRef): string; protected readonly cfnPropertyNames: Record; /** * Create a new `AWS::ControlCatalog::Objective`. * * @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?: CfnObjectiveProps); get objectiveRef(): ObjectiveReference; /** * The Amazon Resource Name (ARN) that identifies the objective. * * @cloudformationAttribute Arn */ get attrArn(): string; /** * The time when the objective was created. * * @cloudformationAttribute CreateTime */ get attrCreateTime(): string; /** * The description of the objective. * * @cloudformationAttribute Description */ get attrDescription(): string; /** * The domain that the objective belongs to. * * @cloudformationAttribute Domain */ get attrDomain(): cdk.IResolvable; /** * The time when the objective was most recently updated. * * @cloudformationAttribute LastUpdateTime */ get attrLastUpdateTime(): string; /** * The name of the objective. * * @cloudformationAttribute Name */ get attrName(): string; /** * The unique identifier of the objective. * * @cloudformationAttribute ObjectiveId */ get attrObjectiveId(): 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 CfnObjective { /** * The domain that the objective belongs to. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-controlcatalog-objective-domain.html */ interface DomainProperty { /** * The Amazon Resource Name (ARN) of the related domain. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-controlcatalog-objective-domain.html#cfn-controlcatalog-objective-domain-arn */ readonly arn?: string; /** * The name of the related domain. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-controlcatalog-objective-domain.html#cfn-controlcatalog-objective-domain-name */ readonly name?: string; } } /** * Properties for defining a `CfnObjective` * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-controlcatalog-objective.html */ export interface CfnObjectiveProps { } export type { IObjectiveRef, ObjectiveReference };