@Generated(value="jsii-pacmak/1.70.0 (build 03c2f6f)", date="2022-11-01T13:16:46.753Z") @Stability(value=Stable) public interface CfnTransitGatewayConnectProps 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.ec2.*;
CfnTransitGatewayConnectProps cfnTransitGatewayConnectProps = CfnTransitGatewayConnectProps.builder()
.options(TransitGatewayConnectOptionsProperty.builder()
.protocol("protocol")
.build())
.transportTransitGatewayAttachmentId("transportTransitGatewayAttachmentId")
// the properties below are optional
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnTransitGatewayConnectProps.Builder
A builder for
CfnTransitGatewayConnectProps |
static class |
CfnTransitGatewayConnectProps.Jsii$Proxy
An implementation for
CfnTransitGatewayConnectProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnTransitGatewayConnectProps.Builder |
builder() |
Object |
getOptions()
The Connect attachment options.
|
default List<CfnTag> |
getTags()
The tags for the attachment.
|
String |
getTransportTransitGatewayAttachmentId()
The ID of the attachment from which the Connect attachment was created.
|
@Stability(value=Stable) @NotNull Object getOptions()
@Stability(value=Stable) @NotNull String getTransportTransitGatewayAttachmentId()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnTransitGatewayConnectProps.Builder builder()
Copyright © 2022. All rights reserved.