Interface ConnectionAttributes

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

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:37.039Z") @Stability(Stable) public interface ConnectionAttributes extends software.amazon.jsii.JsiiSerializable
Interface with properties necessary to import a reusable Connection.

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.events.*;
 ConnectionAttributes connectionAttributes = ConnectionAttributes.builder()
         .connectionArn("connectionArn")
         .connectionName("connectionName")
         .connectionSecretArn("connectionSecretArn")
         .build();
 
  • Method Details

    • getConnectionArn

      @Stability(Stable) @NotNull String getConnectionArn()
      The ARN of the connection created.
    • getConnectionName

      @Stability(Stable) @NotNull String getConnectionName()
      The Name for the connection.
    • getConnectionSecretArn

      @Stability(Stable) @NotNull String getConnectionSecretArn()
      The ARN for the secret created for the connection.
    • builder

      @Stability(Stable) static ConnectionAttributes.Builder builder()
      Returns:
      a ConnectionAttributes.Builder of ConnectionAttributes