interface UserJourneyReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.ResilienceHubV2.UserJourneyReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsresiliencehubv2#UserJourneyReference |
Java | software.amazon.awscdk.interfaces.resiliencehubv2.UserJourneyReference |
Python | aws_cdk.interfaces.aws_resiliencehubv2.UserJourneyReference |
TypeScript | aws-cdk-lib » interfaces » aws_resiliencehubv2 » UserJourneyReference |
A reference to a UserJourney resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_resiliencehubv2 as interfaces_resiliencehubv2 } from 'aws-cdk-lib/interfaces';
const userJourneyReference: interfaces_resiliencehubv2.UserJourneyReference = {
systemIdentifier: 'systemIdentifier',
userJourneyId: 'userJourneyId',
};
Properties
| Name | Type | Description |
|---|---|---|
| system | string | The SystemIdentifier of the UserJourney resource. |
| user | string | The UserJourneyId of the UserJourney resource. |
systemIdentifier
Type:
string
The SystemIdentifier of the UserJourney resource.
userJourneyId
Type:
string
The UserJourneyId of the UserJourney resource.

.NET
Go
Java
Python
TypeScript