Interface ICfnConnectionProps
Properties for defining a CfnConnection
.
Namespace: Amazon.CDK.AWS.CodeStarConnections
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnConnectionProps
Syntax (vb)
Public Interface ICfnConnectionProps
Remarks
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.CodeStarConnections;
var cfnConnectionProps = new CfnConnectionProps {
ConnectionName = "connectionName",
// the properties below are optional
HostArn = "hostArn",
ProviderType = "providerType",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Properties
ConnectionName | The name of the connection. |
HostArn | The Amazon Resource Name (ARN) of the host associated with the connection. |
ProviderType | The name of the external provider where your third-party code repository is configured. |
Tags | Specifies the tags applied to the resource. |
Properties
ConnectionName
The name of the connection.
string ConnectionName { get; }
Property Value
System.String
Remarks
Connection names must be unique in an AWS account .
HostArn
The Amazon Resource Name (ARN) of the host associated with the connection.
virtual string HostArn { get; }
Property Value
System.String
Remarks
ProviderType
The name of the external provider where your third-party code repository is configured.
virtual string ProviderType { get; }
Property Value
System.String
Remarks
Tags
Specifies the tags applied to the resource.
virtual ICfnTag[] Tags { get; }
Property Value
ICfnTag[]