CfnProfileMixinProps
- class aws_cdk.cfn_property_mixins.aws_wellarchitected.CfnProfileMixinProps(*, profile_description=None, profile_name=None, profile_questions=None, tags=None)
Bases:
objectProperties 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:
- 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.
- profile_name
The name of the profile.
- profile_questions
The profile questions.
- tags
The tags assigned to the profile.