Class CfnCloudConnectorProps
Properties for defining a CfnCloudConnector.
Implements
Inherited Members
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 |
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
Remarks
Configuration
The configuration for the cloud connector.
public object Configuration { get; set; }
Property Value
Remarks
Currently supports Azure.
Type union: either IResolvable or CfnCloudConnector.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[]