Class: Aws::CloudWatchLogs::Types::RecordField
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchLogs::Types::RecordField
- Defined in:
- gems/aws-sdk-cloudwatchlogs/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 therecordFieldsparameter provided to a [CreateDelivery][1] or [UpdateDeliveryConfiguration][2] operation. -
#name ⇒ String
The name to use when specifying this record field in a [CreateDelivery][1] or [UpdateDeliveryConfiguration][2] 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 operation.
8102 8103 8104 8105 8106 8107 |
# File 'gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb', line 8102 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 or UpdateDeliveryConfiguration operation.
8102 8103 8104 8105 8106 8107 |
# File 'gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb', line 8102 class RecordField < Struct.new( :name, :mandatory) SENSITIVE = [] include Aws::Structure end |