interface CfnCloudConnectorMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SSM.CfnCloudConnectorMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsssm#CfnCloudConnectorMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ssm.CfnCloudConnectorMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ssm.CfnCloudConnectorMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ssm » CfnCloudConnectorMixinProps |
Properties for CfnCloudConnectorPropsMixin.
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/cfn-property-mixins';
const cfnCloudConnectorMixinProps: ssm.CfnCloudConnectorMixinProps = {
configConnectorArn: 'configConnectorArn',
configuration: {
azureConfiguration: {
applicationDisplayName: 'applicationDisplayName',
applicationId: 'applicationId',
targets: {
subscriptions: [{
displayName: 'displayName',
id: 'id',
}],
},
tenantDisplayName: 'tenantDisplayName',
tenantId: 'tenantId',
},
},
description: 'description',
displayName: 'displayName',
roleArn: 'roleArn',
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. |
| description? | string | The description of the cloud connector. |
| display | string | The display name of the cloud connector. |
| role | string | The IAM role ARN used by the cloud connector. |
| tags? | Cfn[] | Tags to apply to the cloud connector. |
configConnectorArn?
Type:
string
(optional)
The ARN of the AWS Config connector.
configuration?
Type:
IResolvable | Cloud
(optional)
The configuration for the cloud connector.
Currently supports Azure.
description?
Type:
string
(optional)
The description of the cloud connector.
displayName?
Type:
string
(optional)
The display name of the cloud connector.
roleArn?
Type:
string
(optional)
The IAM role ARN used by the cloud connector.
tags?
Type:
Cfn[]
(optional)
Tags to apply to the cloud connector.

.NET
Go
Java
Python
TypeScript