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.
994 995 996 997 998 999 1000 |
# File 'lib/aws-sdk-workspacesweb/types.rb', line 994 class CreateUserAccessLoggingSettingsRequest < Struct.new( :client_token, :kinesis_stream_arn, :tags) SENSITIVE = [:tags] include Aws::Structure end |
#kinesis_stream_arn ⇒ String
The ARN of the Kinesis stream.
994 995 996 997 998 999 1000 |
# File 'lib/aws-sdk-workspacesweb/types.rb', line 994 class CreateUserAccessLoggingSettingsRequest < Struct.new( :client_token, :kinesis_stream_arn, :tags) 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.
994 995 996 997 998 999 1000 |
# File 'lib/aws-sdk-workspacesweb/types.rb', line 994 class CreateUserAccessLoggingSettingsRequest < Struct.new( :client_token, :kinesis_stream_arn, :tags) SENSITIVE = [:tags] include Aws::Structure end |