Interface ConnectionAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ConnectionAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:02.014Z")
@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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forConnectionAttributes
static final class
An implementation forConnectionAttributes
-
Method Summary
Modifier and TypeMethodDescriptionstatic ConnectionAttributes.Builder
builder()
The ARN of the connection created.The Name for the connection.The ARN for the secret created for the connection.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConnectionArn
The ARN of the connection created. -
getConnectionName
The Name for the connection. -
getConnectionSecretArn
The ARN for the secret created for the connection. -
builder
- Returns:
- a
ConnectionAttributes.Builder
ofConnectionAttributes
-