Class: Aws::Wickr::Types::GuestUser
- Inherits:
-
Struct
- Object
- Struct
- Aws::Wickr::Types::GuestUser
- Defined in:
- gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb
Overview
Represents a guest user who has accessed the network from a federated Wickr network.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#billing_period ⇒ String
The billing period when this guest user accessed the network (e.g., '2024-01').
-
#username ⇒ String
The username of the guest user.
-
#username_hash ⇒ String
The unique username hash identifier for the guest user.
Instance Attribute Details
#billing_period ⇒ String
The billing period when this guest user accessed the network (e.g., '2024-01').
1632 1633 1634 1635 1636 1637 1638 |
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 1632 class GuestUser < Struct.new( :billing_period, :username, :username_hash) SENSITIVE = [] include Aws::Structure end |