aws-sdk 2.1387.0 → 2.1389.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.
@@ -10,6 +10,11 @@
10
10
  "output_token": "nextToken",
11
11
  "limit_key": "maxResults"
12
12
  },
13
+ "ListIpAccessSettings": {
14
+ "input_token": "nextToken",
15
+ "output_token": "nextToken",
16
+ "limit_key": "maxResults"
17
+ },
13
18
  "ListNetworkSettings": {
14
19
  "input_token": "nextToken",
15
20
  "output_token": "nextToken",
@@ -1306,6 +1306,7 @@ declare namespace AlexaForBusiness {
1306
1306
  * Settings for requiring a check in when a room is reserved. Alexa can cancel a room reservation if it's not checked into to make the room available for others. Users can check in by joining the meeting with Alexa or an AVS device, or by saying “Alexa, check in.”
1307
1307
  */
1308
1308
  RequireCheckIn?: CreateRequireCheckIn;
1309
+ ProactiveJoin?: CreateProactiveJoin;
1309
1310
  }
1310
1311
  export interface CreateNetworkProfileRequest {
1311
1312
  /**
@@ -1356,6 +1357,9 @@ declare namespace AlexaForBusiness {
1356
1357
  */
1357
1358
  NetworkProfileArn?: Arn;
1358
1359
  }
1360
+ export interface CreateProactiveJoin {
1361
+ EnabledByMotion: Boolean;
1362
+ }
1359
1363
  export interface CreateProfileRequest {
1360
1364
  /**
1361
1365
  * The name of a room profile.
@@ -2458,6 +2462,7 @@ declare namespace AlexaForBusiness {
2458
2462
  * Settings for requiring a check in when a room is reserved. Alexa can cancel a room reservation if it's not checked into. This makes the room available for others. Users can check in by joining the meeting with Alexa or an AVS device, or by saying “Alexa, check in.”
2459
2463
  */
2460
2464
  RequireCheckIn?: RequireCheckIn;
2465
+ ProactiveJoin?: ProactiveJoin;
2461
2466
  }
2462
2467
  export interface MeetingSetting {
2463
2468
  /**
@@ -2582,6 +2587,9 @@ declare namespace AlexaForBusiness {
2582
2587
  export type PhoneNumberList = PhoneNumber[];
2583
2588
  export type PhoneNumberType = "MOBILE"|"WORK"|"HOME"|string;
2584
2589
  export type PrivacyPolicy = string;
2590
+ export interface ProactiveJoin {
2591
+ EnabledByMotion?: Boolean;
2592
+ }
2585
2593
  export type ProductDescription = string;
2586
2594
  export type ProductId = string;
2587
2595
  export interface Profile {
@@ -3652,6 +3660,7 @@ declare namespace AlexaForBusiness {
3652
3660
  * Settings for requiring a check in when a room is reserved. Alexa can cancel a room reservation if it's not checked into to make the room available for others. Users can check in by joining the meeting with Alexa or an AVS device, or by saying “Alexa, check in.”
3653
3661
  */
3654
3662
  RequireCheckIn?: UpdateRequireCheckIn;
3663
+ ProactiveJoin?: UpdateProactiveJoin;
3655
3664
  }
3656
3665
  export interface UpdateNetworkProfileRequest {
3657
3666
  /**
@@ -3685,6 +3694,9 @@ declare namespace AlexaForBusiness {
3685
3694
  }
3686
3695
  export interface UpdateNetworkProfileResponse {
3687
3696
  }
3697
+ export interface UpdateProactiveJoin {
3698
+ EnabledByMotion: Boolean;
3699
+ }
3688
3700
  export interface UpdateProfileRequest {
3689
3701
  /**
3690
3702
  * The ARN of the room profile to update. Required.
@@ -459,6 +459,14 @@ declare namespace Appflow {
459
459
  * Information about who registered the connector.
460
460
  */
461
461
  registeredBy?: RegisteredBy;
462
+ /**
463
+ * The data transfer types that the connector supports. RECORD Structured records. FILE Files or binary data.
464
+ */
465
+ supportedDataTransferTypes?: SupportedDataTransferTypeList;
466
+ /**
467
+ * The APIs of the connector application that Amazon AppFlow can use to transfer your data.
468
+ */
469
+ supportedDataTransferApis?: SupportedDataTransferApis;
462
470
  }
463
471
  export type ConnectorConfigurationsMap = {[key: string]: ConnectorConfiguration};
464
472
  export type ConnectorDescription = string;
@@ -507,6 +515,10 @@ declare namespace Appflow {
507
515
  * The connection mode that the connector supports.
508
516
  */
509
517
  connectorModes?: ConnectorModeList;
518
+ /**
519
+ * The data transfer types that the connector supports. RECORD Structured records. FILE Files or binary data.
520
+ */
521
+ supportedDataTransferTypes?: SupportedDataTransferTypeList;
510
522
  }
511
523
  export interface ConnectorEntity {
512
524
  /**
@@ -1167,6 +1179,10 @@ declare namespace Appflow {
1167
1179
  * Custom properties that are required to use the custom connector as a source.
1168
1180
  */
1169
1181
  customProperties?: CustomProperties;
1182
+ /**
1183
+ * The API of the connector application that Amazon AppFlow uses to transfer your data.
1184
+ */
1185
+ dataTransferApi?: DataTransferApi;
1170
1186
  }
1171
1187
  export type CustomProperties = {[key: string]: CustomPropertyValue};
1172
1188
  export type CustomPropertyKey = string;
@@ -1185,6 +1201,18 @@ declare namespace Appflow {
1185
1201
  }
1186
1202
  export type DataApiRoleArn = string;
1187
1203
  export type DataPullMode = "Incremental"|"Complete"|string;
1204
+ export interface DataTransferApi {
1205
+ /**
1206
+ * The name of the connector application API.
1207
+ */
1208
+ Name?: DataTransferApiTypeName;
1209
+ /**
1210
+ * You can specify one of the following types: AUTOMATIC The default. Optimizes a flow for datasets that fluctuate in size from small to large. For each flow run, Amazon AppFlow chooses to use the SYNC or ASYNC API type based on the amount of data that the run transfers. SYNC A synchronous API. This type of API optimizes a flow for small to medium-sized datasets. ASYNC An asynchronous API. This type of API optimizes a flow for large datasets.
1211
+ */
1212
+ Type?: DataTransferApiType;
1213
+ }
1214
+ export type DataTransferApiType = "SYNC"|"ASYNC"|"AUTOMATIC"|string;
1215
+ export type DataTransferApiTypeName = string;
1188
1216
  export type DatabaseName = string;
1189
1217
  export type DatabaseUrl = string;
1190
1218
  export type DatadogConnectorOperator = "PROJECTION"|"BETWEEN"|"EQUAL_TO"|"ADDITION"|"MULTIPLICATION"|"DIVISION"|"SUBTRACTION"|"MASK_ALL"|"MASK_FIRST_N"|"MASK_LAST_N"|"VALIDATE_NON_NULL"|"VALIDATE_NON_ZERO"|"VALIDATE_NON_NEGATIVE"|"VALIDATE_NUMERIC"|"NO_OP"|string;
@@ -2957,6 +2985,9 @@ declare namespace Appflow {
2957
2985
  }
2958
2986
  export type SupportedApiVersion = string;
2959
2987
  export type SupportedApiVersionList = SupportedApiVersion[];
2988
+ export type SupportedDataTransferApis = DataTransferApi[];
2989
+ export type SupportedDataTransferType = "RECORD"|"FILE"|string;
2990
+ export type SupportedDataTransferTypeList = SupportedDataTransferType[];
2960
2991
  export interface SupportedFieldTypeDetails {
2961
2992
  /**
2962
2993
  * The initial supported version for fieldType. If this is later changed to a different version, v2 will be introduced.
@@ -87,5 +87,6 @@ export import ForecastService = require('./forecastservice');
87
87
  export import ForecastQueryService = require('./forecastqueryservice');
88
88
  export import MarketplaceCatalog = require('./marketplacecatalog');
89
89
  export import KinesisVideoSignalingChannels = require('./kinesisvideosignalingchannels');
90
+ export import Amp = require('./amp');
90
91
  export import Location = require('./location');
91
92
  export import LexRuntimeV2 = require('./lexruntimev2');
@@ -89,6 +89,7 @@ module.exports = {
89
89
  ForecastQueryService: require('./forecastqueryservice'),
90
90
  MarketplaceCatalog: require('./marketplacecatalog'),
91
91
  KinesisVideoSignalingChannels: require('./kinesisvideosignalingchannels'),
92
+ Amp: require('./amp'),
92
93
  Location: require('./location'),
93
94
  LexRuntimeV2: require('./lexruntimev2')
94
95
  };
@@ -228,19 +228,19 @@ declare class ConfigService extends Service {
228
228
  */
229
229
  describeConfigurationAggregators(callback?: (err: AWSError, data: ConfigService.Types.DescribeConfigurationAggregatorsResponse) => void): Request<ConfigService.Types.DescribeConfigurationAggregatorsResponse, AWSError>;
230
230
  /**
231
- * Returns the current status of the specified configuration recorder as well as the status of the last recording event for the recorder. If a configuration recorder is not specified, this action returns the status of all configuration recorders associated with the account. Currently, you can specify only one configuration recorder per region in your account. For a detailed status of recording events over time, add your Config events to Amazon CloudWatch metrics and use CloudWatch metrics.
231
+ * Returns the current status of the specified configuration recorder as well as the status of the last recording event for the recorder. If a configuration recorder is not specified, this action returns the status of all configuration recorders associated with the account. &gt;You can specify only one configuration recorder for each Amazon Web Services Region for each account. For a detailed status of recording events over time, add your Config events to Amazon CloudWatch metrics and use CloudWatch metrics.
232
232
  */
233
233
  describeConfigurationRecorderStatus(params: ConfigService.Types.DescribeConfigurationRecorderStatusRequest, callback?: (err: AWSError, data: ConfigService.Types.DescribeConfigurationRecorderStatusResponse) => void): Request<ConfigService.Types.DescribeConfigurationRecorderStatusResponse, AWSError>;
234
234
  /**
235
- * Returns the current status of the specified configuration recorder as well as the status of the last recording event for the recorder. If a configuration recorder is not specified, this action returns the status of all configuration recorders associated with the account. Currently, you can specify only one configuration recorder per region in your account. For a detailed status of recording events over time, add your Config events to Amazon CloudWatch metrics and use CloudWatch metrics.
235
+ * Returns the current status of the specified configuration recorder as well as the status of the last recording event for the recorder. If a configuration recorder is not specified, this action returns the status of all configuration recorders associated with the account. &gt;You can specify only one configuration recorder for each Amazon Web Services Region for each account. For a detailed status of recording events over time, add your Config events to Amazon CloudWatch metrics and use CloudWatch metrics.
236
236
  */
237
237
  describeConfigurationRecorderStatus(callback?: (err: AWSError, data: ConfigService.Types.DescribeConfigurationRecorderStatusResponse) => void): Request<ConfigService.Types.DescribeConfigurationRecorderStatusResponse, AWSError>;
238
238
  /**
239
- * Returns the details for the specified configuration recorders. If the configuration recorder is not specified, this action returns the details for all configuration recorders associated with the account. Currently, you can specify only one configuration recorder per region in your account.
239
+ * Returns the details for the specified configuration recorders. If the configuration recorder is not specified, this action returns the details for all configuration recorders associated with the account. You can specify only one configuration recorder for each Amazon Web Services Region for each account.
240
240
  */
241
241
  describeConfigurationRecorders(params: ConfigService.Types.DescribeConfigurationRecordersRequest, callback?: (err: AWSError, data: ConfigService.Types.DescribeConfigurationRecordersResponse) => void): Request<ConfigService.Types.DescribeConfigurationRecordersResponse, AWSError>;
242
242
  /**
243
- * Returns the details for the specified configuration recorders. If the configuration recorder is not specified, this action returns the details for all configuration recorders associated with the account. Currently, you can specify only one configuration recorder per region in your account.
243
+ * Returns the details for the specified configuration recorders. If the configuration recorder is not specified, this action returns the details for all configuration recorders associated with the account. You can specify only one configuration recorder for each Amazon Web Services Region for each account.
244
244
  */
245
245
  describeConfigurationRecorders(callback?: (err: AWSError, data: ConfigService.Types.DescribeConfigurationRecordersResponse) => void): Request<ConfigService.Types.DescribeConfigurationRecordersResponse, AWSError>;
246
246
  /**
@@ -576,11 +576,11 @@ declare class ConfigService extends Service {
576
576
  */
577
577
  putConfigurationAggregator(callback?: (err: AWSError, data: ConfigService.Types.PutConfigurationAggregatorResponse) => void): Request<ConfigService.Types.PutConfigurationAggregatorResponse, AWSError>;
578
578
  /**
579
- * Creates a new configuration recorder to record the selected resource configurations. You can use this action to change the role roleARN or the recordingGroup of an existing recorder. To change the role, call the action on the existing configuration recorder and specify a role. Currently, you can specify only one configuration recorder per region in your account. If ConfigurationRecorder does not have the recordingGroup parameter specified, the default is to record all supported resource types.
579
+ * Creates a new configuration recorder to record configuration changes for specified resource types. You can also use this action to change the roleARN or the recordingGroup of an existing recorder. For more information, see Managing the Configuration Recorder in the Config Developer Guide. You can specify only one configuration recorder for each Amazon Web Services Region for each account. If the configuration recorder does not have the recordingGroup field specified, the default is to record all supported resource types.
580
580
  */
581
581
  putConfigurationRecorder(params: ConfigService.Types.PutConfigurationRecorderRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
582
582
  /**
583
- * Creates a new configuration recorder to record the selected resource configurations. You can use this action to change the role roleARN or the recordingGroup of an existing recorder. To change the role, call the action on the existing configuration recorder and specify a role. Currently, you can specify only one configuration recorder per region in your account. If ConfigurationRecorder does not have the recordingGroup parameter specified, the default is to record all supported resource types.
583
+ * Creates a new configuration recorder to record configuration changes for specified resource types. You can also use this action to change the roleARN or the recordingGroup of an existing recorder. For more information, see Managing the Configuration Recorder in the Config Developer Guide. You can specify only one configuration recorder for each Amazon Web Services Region for each account. If the configuration recorder does not have the recordingGroup field specified, the default is to record all supported resource types.
584
584
  */
585
585
  putConfigurationRecorder(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
586
586
  /**
@@ -1476,15 +1476,15 @@ declare namespace ConfigService {
1476
1476
  export type ConfigurationItemStatus = "OK"|"ResourceDiscovered"|"ResourceNotRecorded"|"ResourceDeleted"|"ResourceDeletedNotRecorded"|string;
1477
1477
  export interface ConfigurationRecorder {
1478
1478
  /**
1479
- * The name of the recorder. By default, Config automatically assigns the name "default" when creating the configuration recorder. You cannot change the assigned name.
1479
+ * The name of the configuration recorder. Config automatically assigns the name of "default" when creating the configuration recorder. You cannot change the name of the configuration recorder after it has been created. To change the configuration recorder name, you must delete it and create a new configuration recorder with a new name.
1480
1480
  */
1481
1481
  name?: RecorderName;
1482
1482
  /**
1483
- * Amazon Resource Name (ARN) of the IAM role used to describe the Amazon Web Services resources associated with the account. While the API model does not require this field, the server will reject a request without a defined roleARN for the configuration recorder.
1483
+ * Amazon Resource Name (ARN) of the IAM role assumed by Config and used by the configuration recorder. While the API model does not require this field, the server will reject a request without a defined roleARN for the configuration recorder. Pre-existing Config role If you have used an Amazon Web Services service that uses Config, such as Security Hub or Control Tower, and an Config role has already been created, make sure that the IAM role that you use when setting up Config keeps the same minimum permissions as the already created Config role. You must do this so that the other Amazon Web Services service continues to run as expected. For example, if Control Tower has an IAM role that allows Config to read Amazon Simple Storage Service (Amazon S3) objects, make sure that the same permissions are granted within the IAM role you use when setting up Config. Otherwise, it may interfere with how Control Tower operates. For more information about IAM roles for Config, see Identity and Access Management for Config in the Config Developer Guide.
1484
1484
  */
1485
1485
  roleARN?: String;
1486
1486
  /**
1487
- * Specifies the types of Amazon Web Services resources for which Config records configuration changes.
1487
+ * Specifies which resource types Config records for configuration changes. High Number of Config Evaluations You may notice increased activity in your account during your initial month recording with Config when compared to subsequent months. During the initial bootstrapping process, Config runs evaluations on all the resources in your account that you have selected for Config to record. If you are running ephemeral workloads, you may see increased activity from Config as it records configuration changes associated with creating and deleting these temporary resources. An ephemeral workload is a temporary use of computing resources that are loaded and run when needed. Examples include Amazon Elastic Compute Cloud (Amazon EC2) Spot Instances, Amazon EMR jobs, and Auto Scaling. If you want to avoid the increased activity from running ephemeral workloads, you can run these types of workloads in a separate account with Config turned off to avoid increased configuration recording and rule evaluations.
1488
1488
  */
1489
1489
  recordingGroup?: RecordingGroup;
1490
1490
  }
@@ -2604,6 +2604,12 @@ declare namespace ConfigService {
2604
2604
  export type Evaluations = Evaluation[];
2605
2605
  export type EventSource = "aws.config"|string;
2606
2606
  export type ExcludedAccounts = AccountId[];
2607
+ export interface ExclusionByResourceTypes {
2608
+ /**
2609
+ * A comma-separated list of resource types to exclude from recording by the configuration recorder.
2610
+ */
2611
+ resourceTypes?: ResourceTypeList;
2612
+ }
2607
2613
  export interface ExecutionControls {
2608
2614
  /**
2609
2615
  * A SsmControls object.
@@ -3797,7 +3803,7 @@ declare namespace ConfigService {
3797
3803
  }
3798
3804
  export interface PutConfigurationRecorderRequest {
3799
3805
  /**
3800
- * The configuration recorder object that records each configuration change made to the resources.
3806
+ * An object for the configuration recorder to record configuration changes for specified resource types.
3801
3807
  */
3802
3808
  ConfigurationRecorder: ConfigurationRecorder;
3803
3809
  }
@@ -4044,18 +4050,33 @@ declare namespace ConfigService {
4044
4050
  export type RecorderStatus = "Pending"|"Success"|"Failure"|string;
4045
4051
  export interface RecordingGroup {
4046
4052
  /**
4047
- * Specifies whether Config records configuration changes for every supported type of regional resource. If you set this option to true, when Config adds support for a new type of regional resource, it starts recording resources of that type automatically. If you set this option to true, you cannot enumerate a list of resourceTypes.
4053
+ * Specifies whether Config records configuration changes for all supported regional resource types. If you set this field to true, when Config adds support for a new type of regional resource, Config starts recording resources of that type automatically. If you set this field to true, you cannot enumerate specific resource types to record in the resourceTypes field of RecordingGroup, or to exclude in the resourceTypes field of ExclusionByResourceTypes.
4048
4054
  */
4049
4055
  allSupported?: AllSupported;
4050
4056
  /**
4051
- * Specifies whether Config includes all supported types of global resources (for example, IAM resources) with the resources that it records. Before you can set this option to true, you must set the allSupported option to true. If you set this option to true, when Config adds support for a new type of global resource, it starts recording resources of that type automatically. The configuration details for any global resource are the same in all regions. To prevent duplicate configuration items, you should consider customizing Config in only one region to record global resources.
4057
+ * Specifies whether Config records configuration changes for all supported global resources. Before you set this field to true, set the allSupported field of RecordingGroup to true. Optionally, you can set the useOnly field of RecordingStrategy to ALL_SUPPORTED_RESOURCE_TYPES. If you set this field to true, when Config adds support for a new type of global resource in the Region where you set up the configuration recorder, Config starts recording resources of that type automatically. If you set this field to false but list global resource types in the resourceTypes field of RecordingGroup, Config will still record configuration changes for those specified resource types regardless of if you set the includeGlobalResourceTypes field to false. If you do not want to record configuration changes to global resource types, make sure to not list them in the resourceTypes field in addition to setting the includeGlobalResourceTypes field to false.
4052
4058
  */
4053
4059
  includeGlobalResourceTypes?: IncludeGlobalResourceTypes;
4054
4060
  /**
4055
- * A comma-separated list that specifies the types of Amazon Web Services resources for which Config records configuration changes (for example, AWS::EC2::Instance or AWS::CloudTrail::Trail). To record all configuration changes, you must set the allSupported option to true. If you set the AllSupported option to false and populate the ResourceTypes option with values, when Config adds support for a new type of resource, it will not record resources of that type unless you manually add that type to your recording group. For a list of valid resourceTypes values, see the resourceType Value column in Supported Amazon Web Services resource Types.
4061
+ * A comma-separated list that specifies which resource types Config records. Optionally, you can set the useOnly field of RecordingStrategy to INCLUSION_BY_RESOURCE_TYPES. To record all configuration changes, set the allSupported field of RecordingGroup to true, and either omit this field or don't specify any resource types in this field. If you set the allSupported field to false and specify values for resourceTypes, when Config adds support for a new type of resource, it will not record resources of that type unless you manually add that type to your recording group. For a list of valid resourceTypes values, see the Resource Type Value column in Supported Amazon Web Services resource Types in the Config developer guide. Region Availability Before specifying a resource type for Config to track, check Resource Coverage by Region Availability to see if the resource type is supported in the Amazon Web Services Region where you set up Config. If a resource type is supported by Config in at least one Region, you can enable the recording of that resource type in all Regions supported by Config, even if the specified resource type is not supported in the Amazon Web Services Region where you set up Config.
4056
4062
  */
4057
4063
  resourceTypes?: ResourceTypeList;
4064
+ /**
4065
+ * An object that specifies how Config excludes resource types from being recorded by the configuration recorder. To use this option, you must set the useOnly field of RecordingStrategy to EXCLUSION_BY_RESOURCE_TYPES.
4066
+ */
4067
+ exclusionByResourceTypes?: ExclusionByResourceTypes;
4068
+ /**
4069
+ * An object that specifies the recording strategy for the configuration recorder. If you set the useOnly field of RecordingStrategy to ALL_SUPPORTED_RESOURCE_TYPES, Config records configuration changes for all supported regional resource types. You also must set the allSupported field of RecordingGroup to true. When Config adds support for a new type of regional resource, Config automatically starts recording resources of that type. If you set the useOnly field of RecordingStrategy to INCLUSION_BY_RESOURCE_TYPES, Config records configuration changes for only the resource types you specify in the resourceTypes field of RecordingGroup. If you set the useOnly field of RecordingStrategy to EXCLUSION_BY_RESOURCE_TYPES, Config records configuration changes for all supported resource types except the resource types that you specify as exemptions to exclude from being recorded in the resourceTypes field of ExclusionByResourceTypes. The recordingStrategy field is optional when you set the allSupported field of RecordingGroup to true. The recordingStrategy field is optional when you list resource types in the resourceTypes field of RecordingGroup. The recordingStrategy field is required if you list resource types to exclude from recording in the resourceTypes field of ExclusionByResourceTypes. If you choose EXCLUSION_BY_RESOURCE_TYPES for the recording strategy, the exclusionByResourceTypes field will override other properties in the request. For example, even if you set includeGlobalResourceTypes to false, global resource types will still be automatically recorded in this option unless those resource types are specifically listed as exemptions in the resourceTypes field of exclusionByResourceTypes. By default, if you choose the EXCLUSION_BY_RESOURCE_TYPES recording strategy, when Config adds support for a new resource type in the Region where you set up the configuration recorder, including global resource types, Config starts recording resources of that type automatically.
4070
+ */
4071
+ recordingStrategy?: RecordingStrategy;
4072
+ }
4073
+ export interface RecordingStrategy {
4074
+ /**
4075
+ * The recording strategy for the configuration recorder. If you set this option to ALL_SUPPORTED_RESOURCE_TYPES, Config records configuration changes for all supported regional resource types. You also must set the allSupported field of RecordingGroup to true. When Config adds support for a new type of regional resource, Config automatically starts recording resources of that type. For a list of supported resource types, see Supported Resource Types in the Config developer guide. If you set this option to INCLUSION_BY_RESOURCE_TYPES, Config records configuration changes for only the resource types that you specify in the resourceTypes field of RecordingGroup. If you set this option to EXCLUSION_BY_RESOURCE_TYPES, Config records configuration changes for all supported resource types, except the resource types that you specify as exemptions to exclude from being recorded in the resourceTypes field of ExclusionByResourceTypes. The recordingStrategy field is optional when you set the allSupported field of RecordingGroup to true. The recordingStrategy field is optional when you list resource types in the resourceTypes field of RecordingGroup. The recordingStrategy field is required if you list resource types to exclude from recording in the resourceTypes field of ExclusionByResourceTypes. If you choose EXCLUSION_BY_RESOURCE_TYPES for the recording strategy, the exclusionByResourceTypes field will override other properties in the request. For example, even if you set includeGlobalResourceTypes to false, global resource types will still be automatically recorded in this option unless those resource types are specifically listed as exemptions in the resourceTypes field of exclusionByResourceTypes. By default, if you choose the EXCLUSION_BY_RESOURCE_TYPES recording strategy, when Config adds support for a new resource type in the Region where you set up the configuration recorder, including global resource types, Config starts recording resources of that type automatically.
4076
+ */
4077
+ useOnly?: RecordingStrategyType;
4058
4078
  }
4079
+ export type RecordingStrategyType = "ALL_SUPPORTED_RESOURCE_TYPES"|"INCLUSION_BY_RESOURCE_TYPES"|"EXCLUSION_BY_RESOURCE_TYPES"|string;
4059
4080
  export type ReevaluateConfigRuleNames = ConfigRuleName[];
4060
4081
  export type RelatedEvent = string;
4061
4082
  export type RelatedEventList = RelatedEvent[];