interface CfnCloudConnectorProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SSM.CfnCloudConnectorProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsssm#CfnCloudConnectorProps |
Java | software.amazon.awscdk.services.ssm.CfnCloudConnectorProps |
Python | aws_cdk.aws_ssm.CfnCloudConnectorProps |
TypeScript | aws-cdk-lib » aws_ssm » CfnCloudConnectorProps |
Properties for defining a CfnCloudConnector.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-cloudconnector.html
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 cfnCloudConnectorProps: ssm.CfnCloudConnectorProps = {
configConnectorArn: 'configConnectorArn',
configuration: {
azureConfiguration: {
applicationId: 'applicationId',
tenantId: 'tenantId',
// the properties below are optional
applicationDisplayName: 'applicationDisplayName',
targets: {
subscriptions: [{
id: 'id',
// the properties below are optional
displayName: 'displayName',
}],
},
tenantDisplayName: 'tenantDisplayName',
},
},
displayName: 'displayName',
roleArn: 'roleArn',
// the properties below are optional
description: 'description',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| config | string | The ARN of the AWS Config connector. |
| configuration | IResolvable | Cloud | The configuration for the cloud connector. |
| display | string | The display name of the cloud connector. |
| role | string | The IAM role ARN used by the cloud connector. |
| description? | string | The description of the cloud connector. |
| tags? | Cfn[] | Tags to apply to the cloud connector. |
configConnectorArn
Type:
string
The ARN of the AWS Config connector.
configuration
Type:
IResolvable | Cloud
The configuration for the cloud connector.
Currently supports Azure.
displayName
Type:
string
The display name of the cloud connector.
roleArn
Type:
string
The IAM role ARN used by the cloud connector.
description?
Type:
string
(optional)
The description of the cloud connector.
tags?
Type:
Cfn[]
(optional)
Tags to apply to the cloud connector.

.NET
Go
Java
Python
TypeScript