interface TargetAccountConfigurationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.FIS.TargetAccountConfigurationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsfis#TargetAccountConfigurationReference |
Java | software.amazon.awscdk.interfaces.fis.TargetAccountConfigurationReference |
Python | aws_cdk.interfaces.aws_fis.TargetAccountConfigurationReference |
TypeScript | aws-cdk-lib » interfaces » aws_fis » TargetAccountConfigurationReference |
A reference to a TargetAccountConfiguration resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_fis as interfaces_aws_fis } from 'aws-cdk-lib/interfaces';
const targetAccountConfigurationReference: interfaces_aws_fis.TargetAccountConfigurationReference = {
accountId: 'accountId',
experimentTemplateId: 'experimentTemplateId',
};
Properties
| Name | Type | Description |
|---|---|---|
| account | string | The AccountId of the TargetAccountConfiguration resource. |
| experiment | string | The ExperimentTemplateId of the TargetAccountConfiguration resource. |
accountId
Type:
string
The AccountId of the TargetAccountConfiguration resource.
experimentTemplateId
Type:
string
The ExperimentTemplateId of the TargetAccountConfiguration resource.

.NET
Go
Java
Python
TypeScript