Class: Aws::OpsWorks::Types::DataSource
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpsWorks::Types::DataSource
- Defined in:
- gems/aws-sdk-opsworks/lib/aws-sdk-opsworks/types.rb
Overview
Describes an app's data source.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The data source's ARN.
-
#database_name ⇒ String
The database name.
-
#type ⇒ String
The data source's type,
AutoSelectOpsworksMysqlInstance
,OpsworksMysqlInstance
,RdsDbInstance
, orNone
.
Instance Attribute Details
#arn ⇒ String
The data source's ARN.
1938 1939 1940 1941 1942 1943 1944 |
# File 'gems/aws-sdk-opsworks/lib/aws-sdk-opsworks/types.rb', line 1938 class DataSource < Struct.new( :type, :arn, :database_name) SENSITIVE = [] include Aws::Structure end |
#database_name ⇒ String
The database name.
1938 1939 1940 1941 1942 1943 1944 |
# File 'gems/aws-sdk-opsworks/lib/aws-sdk-opsworks/types.rb', line 1938 class DataSource < Struct.new( :type, :arn, :database_name) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The data source's type, AutoSelectOpsworksMysqlInstance
,
OpsworksMysqlInstance
, RdsDbInstance
, or None
.
1938 1939 1940 1941 1942 1943 1944 |
# File 'gems/aws-sdk-opsworks/lib/aws-sdk-opsworks/types.rb', line 1938 class DataSource < Struct.new( :type, :arn, :database_name) SENSITIVE = [] include Aws::Structure end |