@Generated(value="jsii-pacmak/1.72.0 (build 4b8828b)", date="2023-01-03T16:22:26.860Z") @Stability(value=Stable) public interface CfnConnectionProps extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.codestarconnections.*;
CfnConnectionProps cfnConnectionProps = CfnConnectionProps.builder()
.connectionName("connectionName")
// the properties below are optional
.hostArn("hostArn")
.providerType("providerType")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnConnectionProps.Builder
A builder for
CfnConnectionProps |
static class |
CfnConnectionProps.Jsii$Proxy
An implementation for
CfnConnectionProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnConnectionProps.Builder |
builder() |
String |
getConnectionName()
The name of the connection.
|
default String |
getHostArn()
The Amazon Resource Name (ARN) of the host associated with the connection.
|
default String |
getProviderType()
The name of the external provider where your third-party code repository is configured.
|
default List<CfnTag> |
getTags()
Specifies the tags applied to the resource.
|
@Stability(value=Stable) @NotNull String getConnectionName()
Connection names must be unique in an AWS user account.
@Stability(value=Stable) @Nullable default String getHostArn()
@Stability(value=Stable) @Nullable default String getProviderType()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnConnectionProps.Builder builder()
CfnConnectionProps.Builder of CfnConnectionPropsCopyright © 2023. All rights reserved.