Class: Aws::SESV2::Types::ListResourceTenantsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::ListResourceTenantsResponse
- Defined in:
- gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb
Overview
Information about tenants associated with a specific resource.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
A token that indicates that there are additional tenants to list.
-
#resource_tenants ⇒ Array<Types::ResourceTenantMetadata>
An array that contains information about each tenant associated with the resource.
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
ListResourceTenants, and pass this token in the NextToken
parameter.
5797 5798 5799 5800 5801 5802 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 5797 class ListResourceTenantsResponse < Struct.new( :resource_tenants, :next_token) SENSITIVE = [] include Aws::Structure end |
#resource_tenants ⇒ Array<Types::ResourceTenantMetadata>
An array that contains information about each tenant associated with the resource.
5797 5798 5799 5800 5801 5802 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 5797 class ListResourceTenantsResponse < Struct.new( :resource_tenants, :next_token) SENSITIVE = [] include Aws::Structure end |