Account
public struct Account : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
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.
Declaration
Swift
public let arn: String?
-
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.
Declaration
Swift
public let email: String?
-
The unique identifier (ID) of the account. The regex pattern for an account ID string requires exactly 12 digits.
Declaration
Swift
public let id: String?
-
The method by which the account joined the organization.
Declaration
Swift
public let joinedMethod: AccountJoinedMethod?
-
The date the account became a part of the organization.
Declaration
Swift
public let joinedTimestamp: TimeStamp?
-
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.
Declaration
Swift
public let name: String?
-
The status of the account in the organization.
Declaration
Swift
public let status: AccountStatus?
-
Undocumented
Declaration
Swift
public init(arn: String? = nil, email: String? = nil, id: String? = nil, joinedMethod: AccountJoinedMethod? = nil, joinedTimestamp: TimeStamp? = nil, name: String? = nil, status: AccountStatus? = nil)