interface SourceAwsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DevOpsAgent.Mixins.CfnAssociationPropsMixin.SourceAwsConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdevopsagent/mixins#CfnAssociationPropsMixin_SourceAwsConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.devopsagent.mixins.CfnAssociationPropsMixin.SourceAwsConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_devopsagent.mixins.CfnAssociationPropsMixin.SourceAwsConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_devopsagent » mixins » CfnAssociationPropsMixin » SourceAwsConfigurationProperty |
Configuration for AWS source account integration.
Specifies the account ID, assumable role ARN, and resources to be monitored in the source account.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as devopsagent_mixins } from '@aws-cdk/mixins-preview/aws-devopsagent';
declare const resourceMetadata: any;
const sourceAwsConfigurationProperty: devopsagent_mixins.CfnAssociationPropsMixin.SourceAwsConfigurationProperty = {
accountId: 'accountId',
accountType: 'accountType',
assumableRoleArn: 'assumableRoleArn',
resources: [{
resourceArn: 'resourceArn',
resourceMetadata: resourceMetadata,
resourceType: 'resourceType',
}],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| account | string | Account ID corresponding to the provided resources. |
| account | string | Account Type 'source' for AWS DevOps Agent monitoring. |
| assumable | string | Role ARN to be assumed by AWS DevOps Agent to operate on behalf of customer. |
| resources? | IResolvable | (IResolvable | AWSResource)[] | List of resources to monitor. |
| tags? | Key[] | List of tags as key-value pairs, used to identify resources for topology crawl. |
accountId?
Type:
string
(optional)
Account ID corresponding to the provided resources.
accountType?
Type:
string
(optional)
Account Type 'source' for AWS DevOps Agent monitoring.
assumableRoleArn?
Type:
string
(optional)
Role ARN to be assumed by AWS DevOps Agent to operate on behalf of customer.
resources?
Type:
IResolvable | (IResolvable | AWSResource)[]
(optional)
List of resources to monitor.
tags?
Type:
Key[]
(optional)
List of tags as key-value pairs, used to identify resources for topology crawl.

.NET
Go
Java
Python
TypeScript