Show / Hide Table of Contents

Class CfnCloudConnectorProps

Properties for defining a CfnCloudConnector.

Inheritance
object
CfnCloudConnectorProps
Implements
ICfnCloudConnectorProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.SSM
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnCloudConnectorProps : ICfnCloudConnectorProps
Syntax (vb)
Public Class CfnCloudConnectorProps Implements ICfnCloudConnectorProps
Remarks

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

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.SSM;

             var cfnCloudConnectorProps = new CfnCloudConnectorProps {
                 ConfigConnectorArn = "configConnectorArn",
                 Configuration = new CloudConnectorConfigurationProperty {
                     AzureConfiguration = new AzureConfigurationProperty {
                         ApplicationId = "applicationId",
                         TenantId = "tenantId",

                         // the properties below are optional
                         ApplicationDisplayName = "applicationDisplayName",
                         Targets = new ConfigurationTargetsProperty {
                             Subscriptions = new [] { new AzureSubscriptionProperty {
                                 Id = "id",

                                 // the properties below are optional
                                 DisplayName = "displayName"
                             } }
                         },
                         TenantDisplayName = "tenantDisplayName"
                     }
                 },
                 DisplayName = "displayName",
                 RoleArn = "roleArn",

                 // the properties below are optional
                 Description = "description",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnCloudConnectorProps()

Properties for defining a CfnCloudConnector.

Properties

ConfigConnectorArn

The ARN of the AWS Config connector.

Configuration

The configuration for the cloud connector.

Description

The description of the cloud connector.

DisplayName

The display name of the cloud connector.

RoleArn

The IAM role ARN used by the cloud connector.

Tags

Tags to apply to the cloud connector.

Constructors

CfnCloudConnectorProps()

Properties for defining a CfnCloudConnector.

public CfnCloudConnectorProps()
Remarks

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

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.SSM;

             var cfnCloudConnectorProps = new CfnCloudConnectorProps {
                 ConfigConnectorArn = "configConnectorArn",
                 Configuration = new CloudConnectorConfigurationProperty {
                     AzureConfiguration = new AzureConfigurationProperty {
                         ApplicationId = "applicationId",
                         TenantId = "tenantId",

                         // the properties below are optional
                         ApplicationDisplayName = "applicationDisplayName",
                         Targets = new ConfigurationTargetsProperty {
                             Subscriptions = new [] { new AzureSubscriptionProperty {
                                 Id = "id",

                                 // the properties below are optional
                                 DisplayName = "displayName"
                             } }
                         },
                         TenantDisplayName = "tenantDisplayName"
                     }
                 },
                 DisplayName = "displayName",
                 RoleArn = "roleArn",

                 // the properties below are optional
                 Description = "description",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

ConfigConnectorArn

The ARN of the AWS Config connector.

public string ConfigConnectorArn { get; set; }
Property Value

string

Remarks

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.

public object Configuration { get; set; }
Property Value

object

Remarks

Currently supports Azure.

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

Type union: either IResolvable or CfnCloudConnector.ICloudConnectorConfigurationProperty

Description

The description of the cloud connector.

public string? Description { get; set; }
Property Value

string

Remarks

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

DisplayName

The display name of the cloud connector.

public string DisplayName { get; set; }
Property Value

string

Remarks

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

RoleArn

The IAM role ARN used by the cloud connector.

public string RoleArn { get; set; }
Property Value

string

Remarks

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.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

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

Implements

ICfnCloudConnectorProps
Back to top Generated by DocFX