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