Interface ConnectionAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ConnectionAttributes.Jsii$Proxy
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
-