Class CfnCloudConnectorMixinProps
Properties for CfnCloudConnectorPropsMixin.
Implements
Inherited Members
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
Remarks
Configuration
The configuration for the cloud connector.
public object? Configuration { get; set; }
Property Value
Remarks
Currently supports Azure.
Type union: either IResolvable or CfnCloudConnectorPropsMixin.ICloudConnectorConfigurationProperty
Description
The description of the cloud connector.
public string? Description { get; set; }
Property Value
Remarks
DisplayName
The display name of the cloud connector.
public string? DisplayName { get; set; }
Property Value
Remarks
RoleArn
The IAM role ARN used by the cloud connector.
public string? RoleArn { get; set; }
Property Value
Remarks
Tags
Tags to apply to the cloud connector.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]