Class: Aws::WorkSpacesWeb::Types::CreateUserAccessLoggingSettingsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::WorkSpacesWeb::Types::CreateUserAccessLoggingSettingsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-workspacesweb/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:tags]
Instance Attribute Summary collapse
-
#client_token ⇒ String
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
-
#kinesis_stream_arn ⇒ String
The ARN of the Kinesis stream.
-
#tags ⇒ Array<Types::Tag>
The tags to add to the user settings resource.
Instance Attribute Details
#client_token ⇒ String
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, subsequent retries with the same client token returns the result from the original successful request.
If you do not specify a client token, one is automatically generated by the Amazon Web Services SDK.
**A suitable default value is auto-generated.** You should normally not need to pass this option.
1249 1250 1251 1252 1253 1254 1255 |
# File 'lib/aws-sdk-workspacesweb/types.rb', line 1249 class CreateUserAccessLoggingSettingsRequest < Struct.new( :kinesis_stream_arn, :tags, :client_token) SENSITIVE = [:tags] include Aws::Structure end |
#kinesis_stream_arn ⇒ String
The ARN of the Kinesis stream.
1249 1250 1251 1252 1253 1254 1255 |
# File 'lib/aws-sdk-workspacesweb/types.rb', line 1249 class CreateUserAccessLoggingSettingsRequest < Struct.new( :kinesis_stream_arn, :tags, :client_token) SENSITIVE = [:tags] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
The tags to add to the user settings resource. A tag is a key-value pair.
1249 1250 1251 1252 1253 1254 1255 |
# File 'lib/aws-sdk-workspacesweb/types.rb', line 1249 class CreateUserAccessLoggingSettingsRequest < Struct.new( :kinesis_stream_arn, :tags, :client_token) SENSITIVE = [:tags] include Aws::Structure end |