Class: Aws::FIS::Types::UpdateExperimentTemplateLogConfigurationInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::FIS::Types::UpdateExperimentTemplateLogConfigurationInput
- Defined in:
- gems/aws-sdk-fis/lib/aws-sdk-fis/types.rb
Overview
Note:
When making an API call, you may pass UpdateExperimentTemplateLogConfigurationInput data as a hash:
{
cloud_watch_logs_configuration: {
log_group_arn: "CloudWatchLogGroupArn", # required
},
s3_configuration: {
bucket_name: "S3BucketName", # required
prefix: "S3ObjectKey",
},
log_schema_version: 1,
}
Specifies the configuration for experiment logging.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cloud_watch_logs_configuration ⇒ Types::ExperimentTemplateCloudWatchLogsLogConfigurationInput
The configuration for experiment logging to Amazon CloudWatch Logs.
-
#log_schema_version ⇒ Integer
The schema version.
-
#s3_configuration ⇒ Types::ExperimentTemplateS3LogConfigurationInput
The configuration for experiment logging to Amazon S3.
Instance Attribute Details
#cloud_watch_logs_configuration ⇒ Types::ExperimentTemplateCloudWatchLogsLogConfigurationInput
The configuration for experiment logging to Amazon CloudWatch Logs.
1820 1821 1822 1823 1824 1825 1826 |
# File 'gems/aws-sdk-fis/lib/aws-sdk-fis/types.rb', line 1820 class UpdateExperimentTemplateLogConfigurationInput < Struct.new( :cloud_watch_logs_configuration, :s3_configuration, :log_schema_version) SENSITIVE = [] include Aws::Structure end |
#log_schema_version ⇒ Integer
The schema version.
1820 1821 1822 1823 1824 1825 1826 |
# File 'gems/aws-sdk-fis/lib/aws-sdk-fis/types.rb', line 1820 class UpdateExperimentTemplateLogConfigurationInput < Struct.new( :cloud_watch_logs_configuration, :s3_configuration, :log_schema_version) SENSITIVE = [] include Aws::Structure end |
#s3_configuration ⇒ Types::ExperimentTemplateS3LogConfigurationInput
The configuration for experiment logging to Amazon S3.
1820 1821 1822 1823 1824 1825 1826 |
# File 'gems/aws-sdk-fis/lib/aws-sdk-fis/types.rb', line 1820 class UpdateExperimentTemplateLogConfigurationInput < Struct.new( :cloud_watch_logs_configuration, :s3_configuration, :log_schema_version) SENSITIVE = [] include Aws::Structure end |