CfnProfileProps

class aws_cdk.aws_wellarchitected.CfnProfileProps(*, profile_description, profile_name, profile_questions, tags=None)

Bases: object

Properties for defining a CfnProfile.

Parameters:
  • profile_description (str) – The profile description.

  • profile_name (str) – The name of the profile.

  • profile_questions (Union[IResolvable, Sequence[Union[IResolvable, ProfileQuestionUpdateProperty, Dict[str, Any]]]]) – The profile questions.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The tags assigned to the profile.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wellarchitected-profile.html

ExampleMetadata:

fixture=_generated

Example:

from aws_cdk import CfnTag
# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_wellarchitected as wellarchitected

cfn_profile_props = wellarchitected.CfnProfileProps(
    profile_description="profileDescription",
    profile_name="profileName",
    profile_questions=[wellarchitected.CfnProfile.ProfileQuestionUpdateProperty(
        question_id="questionId",
        selected_choice_ids=["selectedChoiceIds"]
    )],

    # the properties below are optional
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

profile_description

The profile description.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wellarchitected-profile.html#cfn-wellarchitected-profile-profiledescription

profile_name

The name of the profile.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wellarchitected-profile.html#cfn-wellarchitected-profile-profilename

profile_questions

The profile questions.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wellarchitected-profile.html#cfn-wellarchitected-profile-profilequestions

tags

The tags assigned to the profile.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wellarchitected-profile.html#cfn-wellarchitected-profile-tags