Class: Aws::SESV2::Types::ListTenantsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::ListTenantsResponse
- Defined in:
- gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb
Overview
Information about tenants associated with your account.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
A token that indicates that there are additional tenants to list.
-
#tenants ⇒ Array<Types::TenantInfo>
An array that contains basic information about each tenant.
Instance Attribute Details
#next_token ⇒ String
A token that indicates that there are additional tenants to list. To
view additional tenants, issue another request to ListTenants, and
pass this token in the NextToken parameter.
5996 5997 5998 5999 6000 6001 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 5996 class ListTenantsResponse < Struct.new( :tenants, :next_token) SENSITIVE = [] include Aws::Structure end |
#tenants ⇒ Array<Types::TenantInfo>
An array that contains basic information about each tenant.
5996 5997 5998 5999 6000 6001 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 5996 class ListTenantsResponse < Struct.new( :tenants, :next_token) SENSITIVE = [] include Aws::Structure end |