interface AssociatedSystemProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ResilienceHubV2.CfnService.AssociatedSystemProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsresiliencehubv2#CfnService_AssociatedSystemProperty |
Java | software.amazon.awscdk.services.resiliencehubv2.CfnService.AssociatedSystemProperty |
Python | aws_cdk.aws_resiliencehubv2.CfnService.AssociatedSystemProperty |
TypeScript | aws-cdk-lib » aws_resiliencehubv2 » CfnService » AssociatedSystemProperty |
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 associatedSystemProperty: resiliencehubv2.CfnService.AssociatedSystemProperty = {
systemArn: 'systemArn',
// the properties below are optional
userJourneyIds: ['userJourneyIds'],
};
Properties
| Name | Type | Description |
|---|---|---|
| system | string | The system ARN. |
| user | string[] | User journey IDs associated with this system. |
systemArn
Type:
string
The system ARN.
userJourneyIds?
Type:
string[]
(optional)
User journey IDs associated with this system.

.NET
Go
Java
Python
TypeScript