ConnectionAttributes¶
-
class
aws_cdk.aws_events.
ConnectionAttributes
(*, connection_arn, connection_name, connection_secret_arn)¶ Bases:
object
Interface with properties necessary to import a reusable Connection.
- Parameters
connection_arn (
str
) – The ARN of the connection created.connection_name (
str
) – The Name for the connection.connection_secret_arn (
str
) – The ARN for the secret created for the connection.
- ExampleMetadata
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_events as events connection_attributes = events.ConnectionAttributes( connection_arn="connectionArn", connection_name="connectionName", connection_secret_arn="connectionSecretArn" )
Attributes
-
connection_arn
¶ The ARN of the connection created.
- Return type
str
-
connection_name
¶ The Name for the connection.
- Return type
str
-
connection_secret_arn
¶ The ARN for the secret created for the connection.
- Return type
str