interface AWSConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DevOpsAgent.Mixins.CfnAssociationPropsMixin.AWSConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdevopsagent/mixins#CfnAssociationPropsMixin_AWSConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.devopsagent.mixins.CfnAssociationPropsMixin.AWSConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_devopsagent.mixins.CfnAssociationPropsMixin.AWSConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_devopsagent » mixins » CfnAssociationPropsMixin » AWSConfigurationProperty |
Configuration for AWS monitor account integration.
Specifies the account ID, assumable role ARN, and resources to be monitored in the primary monitoring 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 aWSConfigurationProperty: devopsagent_mixins.CfnAssociationPropsMixin.AWSConfigurationProperty = {
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 'monitor' for AWS DevOps Agent monitoring. |
| assumable | string | Role ARN used by AWS DevOps Agent to access resources in the primary account. |
| 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 'monitor' for AWS DevOps Agent monitoring.
assumableRoleArn?
Type:
string
(optional)
Role ARN used by AWS DevOps Agent to access resources in the primary account.
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