CfnProfileMixinProps

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

Bases: object

Properties for CfnProfilePropsMixin.

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

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

  • profile_questions (Union[IResolvable, Sequence[Union[IResolvable, ProfileQuestionUpdateProperty, Dict[str, Any]]], None]) – 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.cfn_property_mixins import aws_wellarchitected as wellarchitected

cfn_profile_mixin_props = wellarchitected.CfnProfileMixinProps(
    profile_description="profileDescription",
    profile_name="profileName",
    profile_questions=[wellarchitected.CfnProfilePropsMixin.ProfileQuestionUpdateProperty(
        question_id="questionId",
        selected_choice_ids=["selectedChoiceIds"]
    )],
    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