interface CfnTargetAccountConfigurationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.FIS.CfnTargetAccountConfigurationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsfis#CfnTargetAccountConfigurationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.fis.CfnTargetAccountConfigurationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_fis.CfnTargetAccountConfigurationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_fis » CfnTargetAccountConfigurationMixinProps |
Properties for CfnTargetAccountConfigurationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_fis as fis } from '@aws-cdk/cfn-property-mixins';
const cfnTargetAccountConfigurationMixinProps: fis.CfnTargetAccountConfigurationMixinProps = {
accountId: 'accountId',
description: 'description',
experimentTemplateId: 'experimentTemplateId',
roleArn: 'roleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| account | string | The AWS account ID of the target account. |
| description? | string | The description of the target account. |
| experiment | string | The ID of the experiment template. |
| role | string | The Amazon Resource Name (ARN) of an IAM role for the target account. |
accountId?
Type:
string
(optional)
The AWS account ID of the target account.
description?
Type:
string
(optional)
The description of the target account.
experimentTemplateId?
Type:
string
(optional)
The ID of the experiment template.
roleArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of an IAM role for the target account.

.NET
Go
Java
Python
TypeScript