aws-sdk-configservice 1.89.0 → 1.91.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-configservice/client.rb +66 -48
- data/lib/aws-sdk-configservice/client_api.rb +11 -0
- data/lib/aws-sdk-configservice/types.rb +369 -104
- data/lib/aws-sdk-configservice.rb +1 -1
- metadata +4 -4
@@ -238,6 +238,7 @@ module Aws::ConfigService
|
|
238
238
|
Evaluations = Shapes::ListShape.new(name: 'Evaluations')
|
239
239
|
EventSource = Shapes::StringShape.new(name: 'EventSource')
|
240
240
|
ExcludedAccounts = Shapes::ListShape.new(name: 'ExcludedAccounts')
|
241
|
+
ExclusionByResourceTypes = Shapes::StructureShape.new(name: 'ExclusionByResourceTypes')
|
241
242
|
ExecutionControls = Shapes::StructureShape.new(name: 'ExecutionControls')
|
242
243
|
Expression = Shapes::StringShape.new(name: 'Expression')
|
243
244
|
ExternalEvaluation = Shapes::StructureShape.new(name: 'ExternalEvaluation')
|
@@ -435,6 +436,8 @@ module Aws::ConfigService
|
|
435
436
|
RecorderName = Shapes::StringShape.new(name: 'RecorderName')
|
436
437
|
RecorderStatus = Shapes::StringShape.new(name: 'RecorderStatus')
|
437
438
|
RecordingGroup = Shapes::StructureShape.new(name: 'RecordingGroup')
|
439
|
+
RecordingStrategy = Shapes::StructureShape.new(name: 'RecordingStrategy')
|
440
|
+
RecordingStrategyType = Shapes::StringShape.new(name: 'RecordingStrategyType')
|
438
441
|
ReevaluateConfigRuleNames = Shapes::ListShape.new(name: 'ReevaluateConfigRuleNames')
|
439
442
|
RelatedEvent = Shapes::StringShape.new(name: 'RelatedEvent')
|
440
443
|
RelatedEventList = Shapes::ListShape.new(name: 'RelatedEventList')
|
@@ -1287,6 +1290,9 @@ module Aws::ConfigService
|
|
1287
1290
|
|
1288
1291
|
ExcludedAccounts.member = Shapes::ShapeRef.new(shape: AccountId)
|
1289
1292
|
|
1293
|
+
ExclusionByResourceTypes.add_member(:resource_types, Shapes::ShapeRef.new(shape: ResourceTypeList, location_name: "resourceTypes"))
|
1294
|
+
ExclusionByResourceTypes.struct_class = Types::ExclusionByResourceTypes
|
1295
|
+
|
1290
1296
|
ExecutionControls.add_member(:ssm_controls, Shapes::ShapeRef.new(shape: SsmControls, location_name: "SsmControls"))
|
1291
1297
|
ExecutionControls.struct_class = Types::ExecutionControls
|
1292
1298
|
|
@@ -1905,8 +1911,13 @@ module Aws::ConfigService
|
|
1905
1911
|
RecordingGroup.add_member(:all_supported, Shapes::ShapeRef.new(shape: AllSupported, location_name: "allSupported"))
|
1906
1912
|
RecordingGroup.add_member(:include_global_resource_types, Shapes::ShapeRef.new(shape: IncludeGlobalResourceTypes, location_name: "includeGlobalResourceTypes"))
|
1907
1913
|
RecordingGroup.add_member(:resource_types, Shapes::ShapeRef.new(shape: ResourceTypeList, location_name: "resourceTypes"))
|
1914
|
+
RecordingGroup.add_member(:exclusion_by_resource_types, Shapes::ShapeRef.new(shape: ExclusionByResourceTypes, location_name: "exclusionByResourceTypes"))
|
1915
|
+
RecordingGroup.add_member(:recording_strategy, Shapes::ShapeRef.new(shape: RecordingStrategy, location_name: "recordingStrategy"))
|
1908
1916
|
RecordingGroup.struct_class = Types::RecordingGroup
|
1909
1917
|
|
1918
|
+
RecordingStrategy.add_member(:use_only, Shapes::ShapeRef.new(shape: RecordingStrategyType, location_name: "useOnly"))
|
1919
|
+
RecordingStrategy.struct_class = Types::RecordingStrategy
|
1920
|
+
|
1910
1921
|
ReevaluateConfigRuleNames.member = Shapes::ShapeRef.new(shape: ConfigRuleName)
|
1911
1922
|
|
1912
1923
|
RelatedEventList.member = Shapes::ShapeRef.new(shape: RelatedEvent)
|