interface ConfigurationTargetsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SSM.CfnCloudConnector.ConfigurationTargetsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsssm#CfnCloudConnector_ConfigurationTargetsProperty |
Java | software.amazon.awscdk.services.ssm.CfnCloudConnector.ConfigurationTargetsProperty |
Python | aws_cdk.aws_ssm.CfnCloudConnector.ConfigurationTargetsProperty |
TypeScript | aws-cdk-lib » aws_ssm » CfnCloudConnector » ConfigurationTargetsProperty |
The targets for the cloud connector.
If omitted, the entire tenant is targeted.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ssm as ssm } from 'aws-cdk-lib';
const configurationTargetsProperty: ssm.CfnCloudConnector.ConfigurationTargetsProperty = {
subscriptions: [{
id: 'id',
// the properties below are optional
displayName: 'displayName',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| subscriptions | IResolvable | (IResolvable | Azure)[] | List of Azure subscriptions. |
subscriptions
Type:
IResolvable | (IResolvable | Azure)[]
List of Azure subscriptions.

.NET
Go
Java
Python
TypeScript