Class: Aws::AppRunner::Types::Connection
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppRunner::Types::Connection
- Defined in:
- gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb
Overview
Describes an App Runner connection resource.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#connection_arn ⇒ String
The Amazon Resource Name (ARN) of this connection.
-
#connection_name ⇒ String
The customer-provided connection name.
-
#created_at ⇒ Time
The App Runner connection creation time, expressed as a Unix time stamp.
-
#provider_type ⇒ String
The source repository provider.
-
#status ⇒ String
The current state of the App Runner connection.
Instance Attribute Details
#connection_arn ⇒ String
The Amazon Resource Name (ARN) of this connection.
468 469 470 471 472 473 474 475 476 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 468 class Connection < Struct.new( :connection_name, :connection_arn, :provider_type, :status, :created_at) SENSITIVE = [] include Aws::Structure end |
#connection_name ⇒ String
The customer-provided connection name.
468 469 470 471 472 473 474 475 476 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 468 class Connection < Struct.new( :connection_name, :connection_arn, :provider_type, :status, :created_at) SENSITIVE = [] include Aws::Structure end |
#created_at ⇒ Time
The App Runner connection creation time, expressed as a Unix time stamp.
468 469 470 471 472 473 474 475 476 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 468 class Connection < Struct.new( :connection_name, :connection_arn, :provider_type, :status, :created_at) SENSITIVE = [] include Aws::Structure end |
#provider_type ⇒ String
The source repository provider.
468 469 470 471 472 473 474 475 476 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 468 class Connection < Struct.new( :connection_name, :connection_arn, :provider_type, :status, :created_at) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The current state of the App Runner connection. When the state is
AVAILABLE, you can use the connection to create an App Runner
service.
468 469 470 471 472 473 474 475 476 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 468 class Connection < Struct.new( :connection_name, :connection_arn, :provider_type, :status, :created_at) SENSITIVE = [] include Aws::Structure end |