UserJourneyReference
- class aws_cdk.interfaces.aws_resiliencehubv2.UserJourneyReference(*, system_identifier, user_journey_id)
Bases:
objectA reference to a UserJourney resource.
- Parameters:
system_identifier (
str) – The SystemIdentifier of the UserJourney resource.user_journey_id (
str) – The UserJourneyId of the UserJourney resource.
- 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.interfaces import aws_resiliencehubv2 as interfaces_resiliencehubv2 user_journey_reference = interfaces_resiliencehubv2.UserJourneyReference( system_identifier="systemIdentifier", user_journey_id="userJourneyId" )
Attributes
- system_identifier
The SystemIdentifier of the UserJourney resource.
- user_journey_id
The UserJourneyId of the UserJourney resource.