Show / Hide Table of Contents

Class CfnCloudConnectorMixinProps

Properties for CfnCloudConnectorPropsMixin.

Inheritance
object
CfnCloudConnectorMixinProps
Implements
ICfnCloudConnectorMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.SSM
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnCloudConnectorMixinProps : ICfnCloudConnectorMixinProps
Syntax (vb)
Public Class CfnCloudConnectorMixinProps Implements ICfnCloudConnectorMixinProps
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.CfnPropertyMixins.AWS.SSM;

             var cfnCloudConnectorMixinProps = new CfnCloudConnectorMixinProps {
                 ConfigConnectorArn = "configConnectorArn",
                 Configuration = new CloudConnectorConfigurationProperty {
                     AzureConfiguration = new AzureConfigurationProperty {
                         ApplicationDisplayName = "applicationDisplayName",
                         ApplicationId = "applicationId",
                         Targets = new ConfigurationTargetsProperty {
                             Subscriptions = new [] { new AzureSubscriptionProperty {
                                 DisplayName = "displayName",
                                 Id = "id"
                             } }
                         },
                         TenantDisplayName = "tenantDisplayName",
                         TenantId = "tenantId"
                     }
                 },
                 Description = "description",
                 DisplayName = "displayName",
                 RoleArn = "roleArn",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnCloudConnectorMixinProps()

Properties for CfnCloudConnectorPropsMixin.

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

CfnCloudConnectorMixinProps()

Properties for CfnCloudConnectorPropsMixin.

public CfnCloudConnectorMixinProps()
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.CfnPropertyMixins.AWS.SSM;

             var cfnCloudConnectorMixinProps = new CfnCloudConnectorMixinProps {
                 ConfigConnectorArn = "configConnectorArn",
                 Configuration = new CloudConnectorConfigurationProperty {
                     AzureConfiguration = new AzureConfigurationProperty {
                         ApplicationDisplayName = "applicationDisplayName",
                         ApplicationId = "applicationId",
                         Targets = new ConfigurationTargetsProperty {
                             Subscriptions = new [] { new AzureSubscriptionProperty {
                                 DisplayName = "displayName",
                                 Id = "id"
                             } }
                         },
                         TenantDisplayName = "tenantDisplayName",
                         TenantId = "tenantId"
                     }
                 },
                 Description = "description",
                 DisplayName = "displayName",
                 RoleArn = "roleArn",
                 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 CfnCloudConnectorPropsMixin.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

ICfnCloudConnectorMixinProps
Back to top Generated by DocFX