interface AssociatedSystemProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ResilienceHubV2.CfnServicePropsMixin.AssociatedSystemProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsresiliencehubv2#CfnServicePropsMixin_AssociatedSystemProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.resiliencehubv2.CfnServicePropsMixin.AssociatedSystemProperty |
Python | aws_cdk.cfn_property_mixins.aws_resiliencehubv2.CfnServicePropsMixin.AssociatedSystemProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_resiliencehubv2 » CfnServicePropsMixin » 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/cfn-property-mixins';
const associatedSystemProperty: resiliencehubv2.CfnServicePropsMixin.AssociatedSystemProperty = {
systemArn: 'systemArn',
userJourneyIds: ['userJourneyIds'],
};
Properties
| Name | Type | Description |
|---|---|---|
| system | string | The system ARN. |
| user | string[] | User journey IDs associated with this system. |
systemArn?
Type:
string
(optional)
The system ARN.
userJourneyIds?
Type:
string[]
(optional)
User journey IDs associated with this system.

.NET
Go
Java
Python
TypeScript