Class: Aws::Ivschat::Types::CreateLoggingConfigurationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Ivschat::Types::CreateLoggingConfigurationRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ivschat/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#destination_configuration ⇒ Types::DestinationConfiguration
A complex type that contains a destination configuration for where chat content will be logged.
-
#name ⇒ String
Logging-configuration name.
-
#tags ⇒ Hash<String,String>
Tags to attach to the resource.
Instance Attribute Details
#destination_configuration ⇒ Types::DestinationConfiguration
A complex type that contains a destination configuration for where chat content will be logged. There can be only one type of destination (‘cloudWatchLogs`, `firehose`, or `s3`) in a `destinationConfiguration`.
148 149 150 151 152 153 154 |
# File 'lib/aws-sdk-ivschat/types.rb', line 148 class CreateLoggingConfigurationRequest < Struct.new( :name, :destination_configuration, :tags) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
Logging-configuration name. The value does not need to be unique.
148 149 150 151 152 153 154 |
# File 'lib/aws-sdk-ivschat/types.rb', line 148 class CreateLoggingConfigurationRequest < Struct.new( :name, :destination_configuration, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
Tags to attach to the resource. Array of maps, each of the form ‘string:string (key:value)`. See [Best practices and strategies] in *Tagging Amazon Web Services Resources and Tag Editor* for details, including restrictions that apply to tags and “Tag naming limits and requirements”; Amazon IVS Chat has no constraints on tags beyond what is documented there.
[1]: docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html
148 149 150 151 152 153 154 |
# File 'lib/aws-sdk-ivschat/types.rb', line 148 class CreateLoggingConfigurationRequest < Struct.new( :name, :destination_configuration, :tags) SENSITIVE = [] include Aws::Structure end |