interface ServiceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ARCRegionSwitch.CfnPlanPropsMixin.ServiceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsarcregionswitch#CfnPlanPropsMixin_ServiceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.arcregionswitch.CfnPlanPropsMixin.ServiceProperty |
Python | aws_cdk.cfn_property_mixins.aws_arcregionswitch.CfnPlanPropsMixin.ServiceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_arcregionswitch » CfnPlanPropsMixin » ServiceProperty |
The service for a cross account role.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_arcregionswitch as arcregionswitch } from '@aws-cdk/cfn-property-mixins';
const serviceProperty: arcregionswitch.CfnPlanPropsMixin.ServiceProperty = {
clusterArn: 'clusterArn',
crossAccountRole: 'crossAccountRole',
externalId: 'externalId',
serviceArn: 'serviceArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| cluster | string | The cluster Amazon Resource Name (ARN) for a service. |
| cross | string | The cross account role for a service. |
| external | string | The external ID (secret key) for the service. |
| service | string | The Amazon Resource Name (ARN) for a service. |
clusterArn?
Type:
string
(optional)
The cluster Amazon Resource Name (ARN) for a service.
crossAccountRole?
Type:
string
(optional)
The cross account role for a service.
externalId?
Type:
string
(optional)
The external ID (secret key) for the service.
serviceArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) for a service.

.NET
Go
Java
Python
TypeScript