interface SourceAwsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DevOpsAgent.CfnAssociation.SourceAwsConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdevopsagent#CfnAssociation_SourceAwsConfigurationProperty |
Java | software.amazon.awscdk.services.devopsagent.CfnAssociation.SourceAwsConfigurationProperty |
Python | aws_cdk.aws_devopsagent.CfnAssociation.SourceAwsConfigurationProperty |
TypeScript | aws-cdk-lib » aws_devopsagent » CfnAssociation » SourceAwsConfigurationProperty |
AWS association for 'source' account.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_devopsagent as devopsagent } from 'aws-cdk-lib';
declare const resourceMetadata: any;
const sourceAwsConfigurationProperty: devopsagent.CfnAssociation.SourceAwsConfigurationProperty = {
accountId: 'accountId',
accountType: 'accountType',
assumableRoleArn: 'assumableRoleArn',
// the properties below are optional
resources: [{
resourceArn: 'resourceArn',
// the properties below are optional
resourceMetadata: resourceMetadata,
resourceType: 'resourceType',
}],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| account | string | AWS Account Id corresponding to provided resources. |
| account | string | Account Type 'source' for DevOpsAgent monitoring. |
| assumable | string | Role ARN to be assumed by DevOpsAgent to operate on behalf of customer. |
| resources? | IResolvable | (IResolvable | AWSResource)[] | List of AWS resources. |
| tags? | Key[] | List of AWS tags as key-value pairs. |
accountId
Type:
string
AWS Account Id corresponding to provided resources.
accountType
Type:
string
Account Type 'source' for DevOpsAgent monitoring.
assumableRoleArn
Type:
string
Role ARN to be assumed by DevOpsAgent to operate on behalf of customer.
resources?
Type:
IResolvable | (IResolvable | AWSResource)[]
(optional)
List of AWS resources.
tags?
Type:
Key[]
(optional)
List of AWS tags as key-value pairs.

.NET
Go
Java
Python
TypeScript