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.
1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 1174 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.
1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 1174 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
1174 1175 1176 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 1174 def unknown @unknown end |