Class: Aws::Connect::Types::Expiry
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::Expiry
- Defined in:
- gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb
Overview
An object to specify the expiration of a routing step.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#duration_in_seconds ⇒ Integer
The number of seconds to wait before expiring the routing step.
-
#expiry_timestamp ⇒ Time
The timestamp indicating when the routing step expires.
Instance Attribute Details
#duration_in_seconds ⇒ Integer
The number of seconds to wait before expiring the routing step.
9372 9373 9374 9375 9376 9377 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 9372 class Expiry < Struct.new( :duration_in_seconds, :expiry_timestamp) SENSITIVE = [] include Aws::Structure end |