Class: Aws::CloudWatchLogs::Types::RecordField
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchLogs::Types::RecordField
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudwatchlogs/types.rb
Overview
A structure that represents a valid record field header and whether it is mandatory.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#mandatory ⇒ Boolean
If this is ‘true`, the record field must be present in the `recordFields` parameter provided to a [CreateDelivery] or [UpdateDeliveryConfiguration] operation.
-
#name ⇒ String
The name to use when specifying this record field in a [CreateDelivery] or [UpdateDeliveryConfiguration] operation.
Instance Attribute Details
#mandatory ⇒ Boolean
If this is ‘true`, the record field must be present in the `recordFields` parameter provided to a [CreateDelivery] or
- UpdateDeliveryConfiguration][2
-
operation.
[1]: docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_CreateDelivery.html [2]: docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_UpdateDeliveryConfiguration.html
6841 6842 6843 6844 6845 6846 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 6841 class RecordField < Struct.new( :name, :mandatory) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name to use when specifying this record field in a
- CreateDelivery][1
-
or [UpdateDeliveryConfiguration] operation.
[1]: docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_CreateDelivery.html [2]: docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_UpdateDeliveryConfiguration.html
6841 6842 6843 6844 6845 6846 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 6841 class RecordField < Struct.new( :name, :mandatory) SENSITIVE = [] include Aws::Structure end |