interface CfnUserJourneyProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ResilienceHubV2.CfnUserJourneyProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsresiliencehubv2#CfnUserJourneyProps |
Java | software.amazon.awscdk.services.resiliencehubv2.CfnUserJourneyProps |
Python | aws_cdk.aws_resiliencehubv2.CfnUserJourneyProps |
TypeScript | aws-cdk-lib » aws_resiliencehubv2 » CfnUserJourneyProps |
Properties for defining a CfnUserJourney.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_resiliencehubv2 as resiliencehubv2 } from 'aws-cdk-lib';
const cfnUserJourneyProps: resiliencehubv2.CfnUserJourneyProps = {
name: 'name',
systemIdentifier: 'systemIdentifier',
// the properties below are optional
description: 'description',
policyArn: 'policyArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the user journey. |
| system | string | The system ARN or system ID that owns this user journey. |
| description? | string | The description of the user journey. |
| policy | string | The ARN of the resilience policy to associate with this user journey. |
name
Type:
string
The name of the user journey.
systemIdentifier
Type:
string
The system ARN or system ID that owns this user journey.
description?
Type:
string
(optional)
The description of the user journey.
policyArn?
Type:
string
(optional)
The ARN of the resilience policy to associate with this user journey.

.NET
Go
Java
Python
TypeScript