Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.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.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

string

Remarks

Connection names must be unique in an AWS account .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-connectionname

HostArn

The Amazon Resource Name (ARN) of the host associated with the connection.

string? HostArn { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-hostarn

ProviderType

The name of the external provider where your third-party code repository is configured.

string? ProviderType { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-providertype

Tags

Specifies the tags applied to the resource.

ICfnTag[]? Tags { get; }
Property Value

ICfnTag[]

Remarks

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

Back to top Generated by DocFX