CfnCloudConnectorProps

class aws_cdk.aws_ssm.CfnCloudConnectorProps(*, config_connector_arn, configuration, display_name, role_arn, description=None, tags=None)

Bases: object

Properties for defining a CfnCloudConnector.

Parameters:
  • config_connector_arn (str) – The ARN of the AWS Config connector.

  • configuration (Union[IResolvable, CloudConnectorConfigurationProperty, Dict[str, Any]]) – The configuration for the cloud connector. Currently supports Azure.

  • display_name (str) – The display name of the cloud connector.

  • role_arn (str) – The IAM role ARN used by the cloud connector.

  • description (Optional[str]) – The description of the cloud connector.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – Tags to apply to the cloud connector.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-cloudconnector.html

ExampleMetadata:

fixture=_generated

Example:

from aws_cdk import CfnTag
# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_ssm as ssm

cfn_cloud_connector_props = ssm.CfnCloudConnectorProps(
    config_connector_arn="configConnectorArn",
    configuration=ssm.CfnCloudConnector.CloudConnectorConfigurationProperty(
        azure_configuration=ssm.CfnCloudConnector.AzureConfigurationProperty(
            application_id="applicationId",
            tenant_id="tenantId",

            # the properties below are optional
            application_display_name="applicationDisplayName",
            targets=ssm.CfnCloudConnector.ConfigurationTargetsProperty(
                subscriptions=[ssm.CfnCloudConnector.AzureSubscriptionProperty(
                    id="id",

                    # the properties below are optional
                    display_name="displayName"
                )]
            ),
            tenant_display_name="tenantDisplayName"
        )
    ),
    display_name="displayName",
    role_arn="roleArn",

    # the properties below are optional
    description="description",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

config_connector_arn

The ARN of the AWS Config connector.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-cloudconnector.html#cfn-ssm-cloudconnector-configconnectorarn

configuration

The configuration for the cloud connector.

Currently supports Azure.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-cloudconnector.html#cfn-ssm-cloudconnector-configuration

description

The description of the cloud connector.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-cloudconnector.html#cfn-ssm-cloudconnector-description

display_name

The display name of the cloud connector.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-cloudconnector.html#cfn-ssm-cloudconnector-displayname

role_arn

The IAM role ARN used by the cloud connector.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-cloudconnector.html#cfn-ssm-cloudconnector-rolearn

tags

Tags to apply to the cloud connector.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-cloudconnector.html#cfn-ssm-cloudconnector-tags