CfnUserJourneyProps
- class aws_cdk.aws_resiliencehubv2.CfnUserJourneyProps(*, name, system_identifier, description=None, policy_arn=None)
Bases:
objectProperties for defining a
CfnUserJourney.- Parameters:
name (
str) – The name of the user journey.system_identifier (
str) – The system ARN or system ID that owns this user journey.description (
Optional[str]) – The description of the user journey.policy_arn (
Optional[str]) – The ARN of the resilience policy to associate with this user journey.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_resiliencehubv2 as resiliencehubv2 cfn_user_journey_props = resiliencehubv2.CfnUserJourneyProps( name="name", system_identifier="systemIdentifier", # the properties below are optional description="description", policy_arn="policyArn" )
Attributes
- description
The description of the user journey.
- name
The name of the user journey.
- policy_arn
The ARN of the resilience policy to associate with this user journey.
- system_identifier
The system ARN or system ID that owns this user journey.