Class: Aws::Organizations::Types::Account

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-organizations/types.rb

Overview

Contains information about an AWS account that is a member of an organization.

Instance Attribute Summary collapse

Instance Attribute Details

#arnString

The Amazon Resource Name (ARN) of the account.

For more information about ARNs in Organizations, see [ARN Formats Supported by Organizations] in the *AWS Organizations User Guide*.

[1]: docs.aws.amazon.com/organizations/latest/userguide/orgs_permissions.html#orgs-permissions-arns

Returns:

  • (String)


109
110
111
112
113
114
115
116
117
118
# File 'lib/aws-sdk-organizations/types.rb', line 109

class Account < Struct.new(
  :id,
  :arn,
  :email,
  :name,
  :status,
  :joined_method,
  :joined_timestamp)
  include Aws::Structure
end

#emailString

The email address associated with the AWS account.

The [regex pattern] for this parameter is a string of characters that represents a standard Internet email address.

[1]: wikipedia.org/wiki/regex

Returns:

  • (String)


109
110
111
112
113
114
115
116
117
118
# File 'lib/aws-sdk-organizations/types.rb', line 109

class Account < Struct.new(
  :id,
  :arn,
  :email,
  :name,
  :status,
  :joined_method,
  :joined_timestamp)
  include Aws::Structure
end

#idString

The unique identifier (ID) of the account.

The [regex pattern] for an account ID string requires exactly 12 digits.

[1]: wikipedia.org/wiki/regex

Returns:

  • (String)


109
110
111
112
113
114
115
116
117
118
# File 'lib/aws-sdk-organizations/types.rb', line 109

class Account < Struct.new(
  :id,
  :arn,
  :email,
  :name,
  :status,
  :joined_method,
  :joined_timestamp)
  include Aws::Structure
end

#joined_methodString

The method by which the account joined the organization.

Returns:

  • (String)


109
110
111
112
113
114
115
116
117
118
# File 'lib/aws-sdk-organizations/types.rb', line 109

class Account < Struct.new(
  :id,
  :arn,
  :email,
  :name,
  :status,
  :joined_method,
  :joined_timestamp)
  include Aws::Structure
end

#joined_timestampTime

The date the account became a part of the organization.

Returns:

  • (Time)


109
110
111
112
113
114
115
116
117
118
# File 'lib/aws-sdk-organizations/types.rb', line 109

class Account < Struct.new(
  :id,
  :arn,
  :email,
  :name,
  :status,
  :joined_method,
  :joined_timestamp)
  include Aws::Structure
end

#nameString

The friendly name of the account.

The [regex pattern] that is used to validate this parameter is a string of any of the characters in the ASCII character range.

[1]: wikipedia.org/wiki/regex

Returns:

  • (String)


109
110
111
112
113
114
115
116
117
118
# File 'lib/aws-sdk-organizations/types.rb', line 109

class Account < Struct.new(
  :id,
  :arn,
  :email,
  :name,
  :status,
  :joined_method,
  :joined_timestamp)
  include Aws::Structure
end

#statusString

The status of the account in the organization.

Returns:

  • (String)


109
110
111
112
113
114
115
116
117
118
# File 'lib/aws-sdk-organizations/types.rb', line 109

class Account < Struct.new(
  :id,
  :arn,
  :email,
  :name,
  :status,
  :joined_method,
  :joined_timestamp)
  include Aws::Structure
end