Class: Aws::DataZone::Types::AwsAccount
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::AwsAccount
- Defined in:
- gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb
Overview
Note:
AwsAccount is a union - when making an API calls you must set exactly one of the members.
Note:
AwsAccount is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of AwsAccount corresponding to the set member.
The account ID of a project.
Direct Known Subclasses
Defined Under Namespace
Classes: AwsAccountId, AwsAccountIdPath, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#aws_account_id ⇒ String
The account ID of a project.
-
#aws_account_id_path ⇒ String
The account ID path of a project.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#aws_account_id ⇒ String
The account ID of a project.
1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 1254 class AwsAccount < Struct.new( :aws_account_id, :aws_account_id_path, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class AwsAccountId < AwsAccount; end class AwsAccountIdPath < AwsAccount; end class Unknown < AwsAccount; end end |
#aws_account_id_path ⇒ String
The account ID path of a project.
1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 1254 class AwsAccount < Struct.new( :aws_account_id, :aws_account_id_path, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class AwsAccountId < AwsAccount; end class AwsAccountIdPath < AwsAccount; end class Unknown < AwsAccount; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1254 1255 1256 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 1254 def unknown @unknown end |