Class: Aws::CloudWatchOmni::Types::CreateOneTimeDeepLinkCodeInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchOmni::Types::CreateOneTimeDeepLinkCodeInput
- Defined in:
- gems/aws-sdk-cloudwatchomni/lib/aws-sdk-cloudwatchomni/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain_id ⇒ String
The ID of the domain to generate the code for.
-
#redirect_url ⇒ String
The URL to redirect to after the deep-link code is used.
-
#ttl_seconds ⇒ Integer
How long the code remains valid, in seconds.
Instance Attribute Details
#domain_id ⇒ String
The ID of the domain to generate the code for.
1225 1226 1227 1228 1229 1230 1231 |
# File 'gems/aws-sdk-cloudwatchomni/lib/aws-sdk-cloudwatchomni/types.rb', line 1225 class CreateOneTimeDeepLinkCodeInput < Struct.new( :domain_id, :ttl_seconds, :redirect_url) SENSITIVE = [] include Aws::Structure end |
#redirect_url ⇒ String
The URL to redirect to after the deep-link code is used. Must be an HTTPS URL in the domain with a path of /auth/callback, and cannot include a query string or fragment. If omitted, no redirect is applied.
1225 1226 1227 1228 1229 1230 1231 |
# File 'gems/aws-sdk-cloudwatchomni/lib/aws-sdk-cloudwatchomni/types.rb', line 1225 class CreateOneTimeDeepLinkCodeInput < Struct.new( :domain_id, :ttl_seconds, :redirect_url) SENSITIVE = [] include Aws::Structure end |
#ttl_seconds ⇒ Integer
How long the code remains valid, in seconds. Defaults to 300.
1225 1226 1227 1228 1229 1230 1231 |
# File 'gems/aws-sdk-cloudwatchomni/lib/aws-sdk-cloudwatchomni/types.rb', line 1225 class CreateOneTimeDeepLinkCodeInput < Struct.new( :domain_id, :ttl_seconds, :redirect_url) SENSITIVE = [] include Aws::Structure end |