interface CfnTargetAccountConfigurationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.FIS.Mixins.CfnTargetAccountConfigurationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsfis/mixins#CfnTargetAccountConfigurationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.fis.mixins.CfnTargetAccountConfigurationMixinProps |
Python | aws_cdk.mixins_preview.aws_fis.mixins.CfnTargetAccountConfigurationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_fis » mixins » 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 { mixins as fis_mixins } from '@aws-cdk/mixins-preview/aws-fis';
const cfnTargetAccountConfigurationMixinProps: fis_mixins.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