Class: Aws::DataZone::Types::AwsAccount

Inherits:
Struct
  • Object
show all
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

AwsAccountId, AwsAccountIdPath, Unknown

Defined Under Namespace

Classes: AwsAccountId, AwsAccountIdPath, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#aws_account_idString

The account ID of a project.

Returns:

  • (String)


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_pathString

The account ID path of a project.

Returns:

  • (String)


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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1174
1175
1176
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 1174

def unknown
  @unknown
end