Interface CfnConnectionProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnConnectionProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-04-02T21:55:12.483Z") @Stability(Stable) public interface CfnConnectionProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnConnection.

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.interconnect.*;
 CfnConnectionProps cfnConnectionProps = CfnConnectionProps.builder()
         .attachPoint(AttachPointProperty.builder()
                 .arn("arn")
                 .directConnectGateway("directConnectGateway")
                 .build())
         // the properties below are optional
         .activationKey("activationKey")
         .bandwidth("bandwidth")
         .description("description")
         .environmentId("environmentId")
         .remoteOwnerAccount("remoteOwnerAccount")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: