cdk-comprehend-s3olap 2.0.468 → 2.0.470

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.
Files changed (30) hide show
  1. package/.jsii +55 -3
  2. package/lib/cdk-comprehend-s3olap.js +2 -2
  3. package/lib/comprehend-lambdas.js +2 -2
  4. package/lib/iam-roles.js +4 -4
  5. package/node_modules/aws-sdk/README.md +1 -1
  6. package/node_modules/aws-sdk/apis/drs-2020-02-26.min.json +61 -57
  7. package/node_modules/aws-sdk/apis/emr-serverless-2021-07-13.min.json +23 -17
  8. package/node_modules/aws-sdk/apis/guardduty-2017-11-28.min.json +8 -0
  9. package/node_modules/aws-sdk/apis/qbusiness-2023-11-27.min.json +120 -87
  10. package/node_modules/aws-sdk/apis/quicksight-2018-04-01.min.json +1182 -1038
  11. package/node_modules/aws-sdk/apis/rolesanywhere-2018-05-10.min.json +167 -64
  12. package/node_modules/aws-sdk/apis/workspaces-2015-04-08.min.json +262 -128
  13. package/node_modules/aws-sdk/apis/workspaces-2015-04-08.paginators.json +6 -0
  14. package/node_modules/aws-sdk/clients/drs.d.ts +18 -1
  15. package/node_modules/aws-sdk/clients/ec2.d.ts +33 -33
  16. package/node_modules/aws-sdk/clients/emrserverless.d.ts +14 -1
  17. package/node_modules/aws-sdk/clients/guardduty.d.ts +9 -1
  18. package/node_modules/aws-sdk/clients/qbusiness.d.ts +381 -321
  19. package/node_modules/aws-sdk/clients/quicksight.d.ts +193 -10
  20. package/node_modules/aws-sdk/clients/rolesanywhere.d.ts +81 -0
  21. package/node_modules/aws-sdk/clients/sagemaker.d.ts +6 -6
  22. package/node_modules/aws-sdk/clients/workspaces.d.ts +180 -0
  23. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
  24. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +11 -11
  25. package/node_modules/aws-sdk/dist/aws-sdk.js +7 -3
  26. package/node_modules/aws-sdk/dist/aws-sdk.min.js +8 -8
  27. package/node_modules/aws-sdk/lib/core.js +1 -1
  28. package/node_modules/aws-sdk/lib/region_config_data.json +4 -0
  29. package/node_modules/aws-sdk/package.json +1 -1
  30. package/package.json +3 -3
@@ -25,6 +25,12 @@
25
25
  "limit_key": "Limit",
26
26
  "output_token": "NextToken",
27
27
  "result_key": "Workspaces"
28
+ },
29
+ "ListAccountLinks": {
30
+ "input_token": "NextToken",
31
+ "limit_key": "MaxResults",
32
+ "output_token": "NextToken",
33
+ "result_key": "AccountLinks"
28
34
  }
29
35
  }
30
36
  }
@@ -669,6 +669,10 @@ declare namespace Drs {
669
669
  * AWS Availability zone into which data is being replicated.
670
670
  */
671
671
  stagingAvailabilityZone?: AwsAvailabilityZone;
672
+ /**
673
+ * The ARN of the staging Outpost
674
+ */
675
+ stagingOutpostArn?: OutpostARN;
672
676
  }
673
677
  export interface DataReplicationInfoReplicatedDisk {
674
678
  /**
@@ -1591,6 +1595,7 @@ declare namespace Drs {
1591
1595
  fullString?: BoundedString;
1592
1596
  }
1593
1597
  export type OriginEnvironment = "ON_PREMISES"|"AWS"|string;
1598
+ export type OutpostARN = string;
1594
1599
  export type PITPolicy = PITPolicyRule[];
1595
1600
  export interface PITPolicyRule {
1596
1601
  /**
@@ -1767,6 +1772,10 @@ declare namespace Drs {
1767
1772
  * Properties of the Recovery Instance machine.
1768
1773
  */
1769
1774
  recoveryInstanceProperties?: RecoveryInstanceProperties;
1775
+ /**
1776
+ * The ARN of the source Outpost
1777
+ */
1778
+ sourceOutpostArn?: OutpostARN;
1770
1779
  /**
1771
1780
  * The Source Server ID that this Recovery Instance is associated with.
1772
1781
  */
@@ -1815,6 +1824,10 @@ declare namespace Drs {
1815
1824
  * AWS Availability zone into which data is being replicated.
1816
1825
  */
1817
1826
  stagingAvailabilityZone?: AwsAvailabilityZone;
1827
+ /**
1828
+ * The ARN of the staging Outpost
1829
+ */
1830
+ stagingOutpostArn?: OutpostARN;
1818
1831
  }
1819
1832
  export interface RecoveryInstanceDataReplicationInfoReplicatedDisk {
1820
1833
  /**
@@ -2204,6 +2217,10 @@ declare namespace Drs {
2204
2217
  * AWS Region for an EC2-originated Source Server.
2205
2218
  */
2206
2219
  originRegion?: AwsRegion;
2220
+ /**
2221
+ * The ARN of the source Outpost
2222
+ */
2223
+ sourceOutpostArn?: OutpostARN;
2207
2224
  }
2208
2225
  export interface SourceNetwork {
2209
2226
  /**
@@ -2814,7 +2831,7 @@ declare namespace Drs {
2814
2831
  */
2815
2832
  useDedicatedReplicationServer?: Boolean;
2816
2833
  }
2817
- export type VolumeStatus = "REGULAR"|"CONTAINS_MARKETPLACE_PRODUCT_CODES"|"MISSING_VOLUME_ATTRIBUTES"|"MISSING_VOLUME_ATTRIBUTES_AND_PRECHECK_UNAVAILABLE"|string;
2834
+ export type VolumeStatus = "REGULAR"|"CONTAINS_MARKETPLACE_PRODUCT_CODES"|"MISSING_VOLUME_ATTRIBUTES"|"MISSING_VOLUME_ATTRIBUTES_AND_PRECHECK_UNAVAILABLE"|"PENDING"|string;
2818
2835
  export type VolumeToConversionMap = {[key: string]: ConversionMap};
2819
2836
  export type VolumeToProductCodes = {[key: string]: ProductCodes};
2820
2837
  export type VolumeToSizeMap = {[key: string]: PositiveInteger};
@@ -405,11 +405,11 @@ declare class EC2 extends Service {
405
405
  */
406
406
  cancelReservedInstancesListing(callback?: (err: AWSError, data: EC2.Types.CancelReservedInstancesListingResult) => void): Request<EC2.Types.CancelReservedInstancesListingResult, AWSError>;
407
407
  /**
408
- * Cancels the specified Spot Fleet requests. After you cancel a Spot Fleet request, the Spot Fleet launches no new instances. You must also specify whether a canceled Spot Fleet request should terminate its instances. If you choose to terminate the instances, the Spot Fleet request enters the cancelled_terminating state. Otherwise, the Spot Fleet request enters the cancelled_running state and the instances continue to run until they are interrupted or you terminate them manually.
408
+ * Cancels the specified Spot Fleet requests. After you cancel a Spot Fleet request, the Spot Fleet launches no new instances. You must also specify whether a canceled Spot Fleet request should terminate its instances. If you choose to terminate the instances, the Spot Fleet request enters the cancelled_terminating state. Otherwise, the Spot Fleet request enters the cancelled_running state and the instances continue to run until they are interrupted or you terminate them manually. Restrictions You can delete up to 100 fleets in a single request. If you exceed the specified number, no fleets are deleted.
409
409
  */
410
410
  cancelSpotFleetRequests(params: EC2.Types.CancelSpotFleetRequestsRequest, callback?: (err: AWSError, data: EC2.Types.CancelSpotFleetRequestsResponse) => void): Request<EC2.Types.CancelSpotFleetRequestsResponse, AWSError>;
411
411
  /**
412
- * Cancels the specified Spot Fleet requests. After you cancel a Spot Fleet request, the Spot Fleet launches no new instances. You must also specify whether a canceled Spot Fleet request should terminate its instances. If you choose to terminate the instances, the Spot Fleet request enters the cancelled_terminating state. Otherwise, the Spot Fleet request enters the cancelled_running state and the instances continue to run until they are interrupted or you terminate them manually.
412
+ * Cancels the specified Spot Fleet requests. After you cancel a Spot Fleet request, the Spot Fleet launches no new instances. You must also specify whether a canceled Spot Fleet request should terminate its instances. If you choose to terminate the instances, the Spot Fleet request enters the cancelled_terminating state. Otherwise, the Spot Fleet request enters the cancelled_running state and the instances continue to run until they are interrupted or you terminate them manually. Restrictions You can delete up to 100 fleets in a single request. If you exceed the specified number, no fleets are deleted.
413
413
  */
414
414
  cancelSpotFleetRequests(callback?: (err: AWSError, data: EC2.Types.CancelSpotFleetRequestsResponse) => void): Request<EC2.Types.CancelSpotFleetRequestsResponse, AWSError>;
415
415
  /**
@@ -1173,11 +1173,11 @@ declare class EC2 extends Service {
1173
1173
  */
1174
1174
  deleteEgressOnlyInternetGateway(callback?: (err: AWSError, data: EC2.Types.DeleteEgressOnlyInternetGatewayResult) => void): Request<EC2.Types.DeleteEgressOnlyInternetGatewayResult, AWSError>;
1175
1175
  /**
1176
- * Deletes the specified EC2 Fleets. After you delete an EC2 Fleet, it launches no new instances. You must also specify whether a deleted EC2 Fleet should terminate its instances. If you choose to terminate the instances, the EC2 Fleet enters the deleted_terminating state. Otherwise, the EC2 Fleet enters the deleted_running state, and the instances continue to run until they are interrupted or you terminate them manually. For instant fleets, EC2 Fleet must terminate the instances when the fleet is deleted. A deleted instant fleet with running instances is not supported. Restrictions You can delete up to 25 instant fleets in a single request. If you exceed this number, no instant fleets are deleted and an error is returned. There is no restriction on the number of fleets of type maintain or request that can be deleted in a single request. Up to 1000 instances can be terminated in a single request to delete instant fleets. For more information, see Delete an EC2 Fleet in the Amazon EC2 User Guide.
1176
+ * Deletes the specified EC2 Fleets. After you delete an EC2 Fleet, it launches no new instances. You must also specify whether a deleted EC2 Fleet should terminate its instances. If you choose to terminate the instances, the EC2 Fleet enters the deleted_terminating state. Otherwise, the EC2 Fleet enters the deleted_running state, and the instances continue to run until they are interrupted or you terminate them manually. For instant fleets, EC2 Fleet must terminate the instances when the fleet is deleted. Up to 1000 instances can be terminated in a single request to delete instant fleets. A deleted instant fleet with running instances is not supported. Restrictions You can delete up to 25 fleets of type instant in a single request. You can delete up to 100 fleets of type maintain or request in a single request. You can delete up to 125 fleets in a single request, provided you do not exceed the quota for each fleet type, as specified above. If you exceed the specified number of fleets to delete, no fleets are deleted. For more information, see Delete an EC2 Fleet in the Amazon EC2 User Guide.
1177
1177
  */
1178
1178
  deleteFleets(params: EC2.Types.DeleteFleetsRequest, callback?: (err: AWSError, data: EC2.Types.DeleteFleetsResult) => void): Request<EC2.Types.DeleteFleetsResult, AWSError>;
1179
1179
  /**
1180
- * Deletes the specified EC2 Fleets. After you delete an EC2 Fleet, it launches no new instances. You must also specify whether a deleted EC2 Fleet should terminate its instances. If you choose to terminate the instances, the EC2 Fleet enters the deleted_terminating state. Otherwise, the EC2 Fleet enters the deleted_running state, and the instances continue to run until they are interrupted or you terminate them manually. For instant fleets, EC2 Fleet must terminate the instances when the fleet is deleted. A deleted instant fleet with running instances is not supported. Restrictions You can delete up to 25 instant fleets in a single request. If you exceed this number, no instant fleets are deleted and an error is returned. There is no restriction on the number of fleets of type maintain or request that can be deleted in a single request. Up to 1000 instances can be terminated in a single request to delete instant fleets. For more information, see Delete an EC2 Fleet in the Amazon EC2 User Guide.
1180
+ * Deletes the specified EC2 Fleets. After you delete an EC2 Fleet, it launches no new instances. You must also specify whether a deleted EC2 Fleet should terminate its instances. If you choose to terminate the instances, the EC2 Fleet enters the deleted_terminating state. Otherwise, the EC2 Fleet enters the deleted_running state, and the instances continue to run until they are interrupted or you terminate them manually. For instant fleets, EC2 Fleet must terminate the instances when the fleet is deleted. Up to 1000 instances can be terminated in a single request to delete instant fleets. A deleted instant fleet with running instances is not supported. Restrictions You can delete up to 25 fleets of type instant in a single request. You can delete up to 100 fleets of type maintain or request in a single request. You can delete up to 125 fleets in a single request, provided you do not exceed the quota for each fleet type, as specified above. If you exceed the specified number of fleets to delete, no fleets are deleted. For more information, see Delete an EC2 Fleet in the Amazon EC2 User Guide.
1181
1181
  */
1182
1182
  deleteFleets(callback?: (err: AWSError, data: EC2.Types.DeleteFleetsResult) => void): Request<EC2.Types.DeleteFleetsResult, AWSError>;
1183
1183
  /**
@@ -2181,19 +2181,19 @@ declare class EC2 extends Service {
2181
2181
  */
2182
2182
  describeInstanceTopology(callback?: (err: AWSError, data: EC2.Types.DescribeInstanceTopologyResult) => void): Request<EC2.Types.DescribeInstanceTopologyResult, AWSError>;
2183
2183
  /**
2184
- * Returns a list of all instance types offered. The results can be filtered by location (Region or Availability Zone). If no location is specified, the instance types offered in the current Region are returned.
2184
+ * Lists the instance types that are offered for the specified location. If no location is specified, the default is to list the instance types that are offered in the current Region.
2185
2185
  */
2186
2186
  describeInstanceTypeOfferings(params: EC2.Types.DescribeInstanceTypeOfferingsRequest, callback?: (err: AWSError, data: EC2.Types.DescribeInstanceTypeOfferingsResult) => void): Request<EC2.Types.DescribeInstanceTypeOfferingsResult, AWSError>;
2187
2187
  /**
2188
- * Returns a list of all instance types offered. The results can be filtered by location (Region or Availability Zone). If no location is specified, the instance types offered in the current Region are returned.
2188
+ * Lists the instance types that are offered for the specified location. If no location is specified, the default is to list the instance types that are offered in the current Region.
2189
2189
  */
2190
2190
  describeInstanceTypeOfferings(callback?: (err: AWSError, data: EC2.Types.DescribeInstanceTypeOfferingsResult) => void): Request<EC2.Types.DescribeInstanceTypeOfferingsResult, AWSError>;
2191
2191
  /**
2192
- * Describes the details of the instance types that are offered in a location. The results can be filtered by the attributes of the instance types.
2192
+ * Describes the specified instance types. By default, all instance types for the current Region are described. Alternatively, you can filter the results.
2193
2193
  */
2194
2194
  describeInstanceTypes(params: EC2.Types.DescribeInstanceTypesRequest, callback?: (err: AWSError, data: EC2.Types.DescribeInstanceTypesResult) => void): Request<EC2.Types.DescribeInstanceTypesResult, AWSError>;
2195
2195
  /**
2196
- * Describes the details of the instance types that are offered in a location. The results can be filtered by the attributes of the instance types.
2196
+ * Describes the specified instance types. By default, all instance types for the current Region are described. Alternatively, you can filter the results.
2197
2197
  */
2198
2198
  describeInstanceTypes(callback?: (err: AWSError, data: EC2.Types.DescribeInstanceTypesResult) => void): Request<EC2.Types.DescribeInstanceTypesResult, AWSError>;
2199
2199
  /**
@@ -3469,11 +3469,11 @@ declare class EC2 extends Service {
3469
3469
  */
3470
3470
  getConsoleOutput(callback?: (err: AWSError, data: EC2.Types.GetConsoleOutputResult) => void): Request<EC2.Types.GetConsoleOutputResult, AWSError>;
3471
3471
  /**
3472
- * Retrieve a JPG-format screenshot of a running instance to help with troubleshooting. The returned content is Base64-encoded.
3472
+ * Retrieve a JPG-format screenshot of a running instance to help with troubleshooting. The returned content is Base64-encoded. For more information, see Instance console output in the Amazon EC2 User Guide.
3473
3473
  */
3474
3474
  getConsoleScreenshot(params: EC2.Types.GetConsoleScreenshotRequest, callback?: (err: AWSError, data: EC2.Types.GetConsoleScreenshotResult) => void): Request<EC2.Types.GetConsoleScreenshotResult, AWSError>;
3475
3475
  /**
3476
- * Retrieve a JPG-format screenshot of a running instance to help with troubleshooting. The returned content is Base64-encoded.
3476
+ * Retrieve a JPG-format screenshot of a running instance to help with troubleshooting. The returned content is Base64-encoded. For more information, see Instance console output in the Amazon EC2 User Guide.
3477
3477
  */
3478
3478
  getConsoleScreenshot(callback?: (err: AWSError, data: EC2.Types.GetConsoleScreenshotResult) => void): Request<EC2.Types.GetConsoleScreenshotResult, AWSError>;
3479
3479
  /**
@@ -4029,11 +4029,11 @@ declare class EC2 extends Service {
4029
4029
  */
4030
4030
  modifyInstanceMaintenanceOptions(callback?: (err: AWSError, data: EC2.Types.ModifyInstanceMaintenanceOptionsResult) => void): Request<EC2.Types.ModifyInstanceMaintenanceOptionsResult, AWSError>;
4031
4031
  /**
4032
- * Modifies the default instance metadata service (IMDS) settings at the account level in the specified Amazon Web Services&#x2028; Region. To remove a parameter's account-level default setting, specify no-preference. At instance launch, the value will come from the AMI, or from the launch parameter if specified. For more information, see Order of precedence for instance metadata options in the Amazon EC2 User Guide.
4032
+ * Modifies the default instance metadata service (IMDS) settings at the account level in the specified Amazon Web Services&#x2028; Region. To remove a parameter's account-level default setting, specify no-preference. If an account-level setting is cleared with no-preference, then the instance launch considers the other instance metadata settings. For more information, see Order of precedence for instance metadata options in the Amazon EC2 User Guide.
4033
4033
  */
4034
4034
  modifyInstanceMetadataDefaults(params: EC2.Types.ModifyInstanceMetadataDefaultsRequest, callback?: (err: AWSError, data: EC2.Types.ModifyInstanceMetadataDefaultsResult) => void): Request<EC2.Types.ModifyInstanceMetadataDefaultsResult, AWSError>;
4035
4035
  /**
4036
- * Modifies the default instance metadata service (IMDS) settings at the account level in the specified Amazon Web Services&#x2028; Region. To remove a parameter's account-level default setting, specify no-preference. At instance launch, the value will come from the AMI, or from the launch parameter if specified. For more information, see Order of precedence for instance metadata options in the Amazon EC2 User Guide.
4036
+ * Modifies the default instance metadata service (IMDS) settings at the account level in the specified Amazon Web Services&#x2028; Region. To remove a parameter's account-level default setting, specify no-preference. If an account-level setting is cleared with no-preference, then the instance launch considers the other instance metadata settings. For more information, see Order of precedence for instance metadata options in the Amazon EC2 User Guide.
4037
4037
  */
4038
4038
  modifyInstanceMetadataDefaults(callback?: (err: AWSError, data: EC2.Types.ModifyInstanceMetadataDefaultsResult) => void): Request<EC2.Types.ModifyInstanceMetadataDefaultsResult, AWSError>;
4039
4039
  /**
@@ -7523,7 +7523,7 @@ declare namespace EC2 {
7523
7523
  */
7524
7524
  DryRun?: Boolean;
7525
7525
  /**
7526
- * The IDs of the Spot Fleet requests.
7526
+ * The IDs of the Spot Fleet requests. Constraint: You can specify up to 100 IDs in a single request.
7527
7527
  */
7528
7528
  SpotFleetRequestIds: SpotFleetRequestIdList;
7529
7529
  /**
@@ -12256,7 +12256,7 @@ declare namespace EC2 {
12256
12256
  */
12257
12257
  DryRun?: Boolean;
12258
12258
  /**
12259
- * The IDs of the EC2 Fleets.
12259
+ * The IDs of the EC2 Fleets. Constraints: In a single request, you can specify up to 25 instant fleet IDs and up to 100 maintain or request fleet IDs.
12260
12260
  */
12261
12261
  FleetIds: FleetIdSet;
12262
12262
  /**
@@ -15182,11 +15182,11 @@ declare namespace EC2 {
15182
15182
  */
15183
15183
  DryRun?: Boolean;
15184
15184
  /**
15185
- * The location type.
15185
+ * The location type. availability-zone - The Availability Zone. When you specify a location filter, it must be an Availability Zone for the current Region. availability-zone-id - The AZ ID. When you specify a location filter, it must be an AZ ID for the current Region. outpost - The Outpost ARN. When you specify a location filter, it must be an Outpost ARN for the current Region. region - The current Region. If you specify a location filter, it must match the current Region.
15186
15186
  */
15187
15187
  LocationType?: LocationType;
15188
15188
  /**
15189
- * One or more filters. Filter names and values are case-sensitive. location - This depends on the location type. For example, if the location type is region (default), the location is the Region code (for example, us-east-2.) instance-type - The instance type. For example, c5.2xlarge.
15189
+ * One or more filters. Filter names and values are case-sensitive. instance-type - The instance type. For a list of possible values, see Instance. location - The location. For a list of possible identifiers, see Regions and Zones.
15190
15190
  */
15191
15191
  Filters?: FilterList;
15192
15192
  /**
@@ -15200,7 +15200,7 @@ declare namespace EC2 {
15200
15200
  }
15201
15201
  export interface DescribeInstanceTypeOfferingsResult {
15202
15202
  /**
15203
- * The instance types offered.
15203
+ * The instance types offered in the location.
15204
15204
  */
15205
15205
  InstanceTypeOfferings?: InstanceTypeOfferingsList;
15206
15206
  /**
@@ -15214,7 +15214,7 @@ declare namespace EC2 {
15214
15214
  */
15215
15215
  DryRun?: Boolean;
15216
15216
  /**
15217
- * The instance types. For more information, see Instance types in the Amazon EC2 User Guide.
15217
+ * The instance types.
15218
15218
  */
15219
15219
  InstanceTypes?: RequestInstanceTypeList;
15220
15220
  /**
@@ -15232,7 +15232,7 @@ declare namespace EC2 {
15232
15232
  }
15233
15233
  export interface DescribeInstanceTypesResult {
15234
15234
  /**
15235
- * The instance type. For more information, see Instance types in the Amazon EC2 User Guide.
15235
+ * The instance type.
15236
15236
  */
15237
15237
  InstanceTypes?: InstanceTypeInfoList;
15238
15238
  /**
@@ -28585,7 +28585,7 @@ declare namespace EC2 {
28585
28585
  */
28586
28586
  HttpTokens?: MetadataDefaultHttpTokensState;
28587
28587
  /**
28588
- * The maximum number of hops that the metadata token can travel. Minimum: 1 Maximum: 64
28588
+ * The maximum number of hops that the metadata token can travel. To indicate no preference, specify -1. Possible values: Integers from 1 to 64, and -1 to indicate no preference
28589
28589
  */
28590
28590
  HttpPutResponseHopLimit?: BoxedInteger;
28591
28591
  /**
@@ -33082,7 +33082,7 @@ declare namespace EC2 {
33082
33082
  */
33083
33083
  BlockDeviceMappings?: LaunchTemplateBlockDeviceMappingRequestList;
33084
33084
  /**
33085
- * One or more network interfaces. If you specify a network interface, you must specify any security groups and subnets as part of the network interface.
33085
+ * The network interfaces for the instance.
33086
33086
  */
33087
33087
  NetworkInterfaces?: LaunchTemplateInstanceNetworkInterfaceSpecificationRequestList;
33088
33088
  /**
@@ -33134,11 +33134,11 @@ declare namespace EC2 {
33134
33134
  */
33135
33135
  ElasticInferenceAccelerators?: LaunchTemplateElasticInferenceAcceleratorList;
33136
33136
  /**
33137
- * One or more security group IDs. You can create a security group using CreateSecurityGroup.
33137
+ * The IDs of the security groups. If you specify a network interface, you must specify any security groups as part of the network interface instead of using this parameter.
33138
33138
  */
33139
33139
  SecurityGroupIds?: SecurityGroupIdStringList;
33140
33140
  /**
33141
- * One or more security group names. For a nondefault VPC, you must use security group IDs instead.
33141
+ * The names of the security groups. For a nondefault VPC, you must use security group IDs instead. If you specify a network interface, you must specify any security groups as part of the network interface instead of using this parameter.
33142
33142
  */
33143
33143
  SecurityGroups?: SecurityGroupStringList;
33144
33144
  /**
@@ -34494,15 +34494,15 @@ declare namespace EC2 {
34494
34494
  */
34495
34495
  RamdiskId?: RamdiskId;
34496
34496
  /**
34497
- * The IDs of the security groups. You can create a security group using CreateSecurityGroup. If you specify a network interface, you must specify any security groups as part of the network interface.
34497
+ * The IDs of the security groups. You can create a security group using CreateSecurityGroup. If you specify a network interface, you must specify any security groups as part of the network interface instead of using this parameter.
34498
34498
  */
34499
34499
  SecurityGroupIds?: SecurityGroupIdStringList;
34500
34500
  /**
34501
- * [Default VPC] The names of the security groups. If you specify a network interface, you must specify any security groups as part of the network interface. Default: Amazon EC2 uses the default security group.
34501
+ * [Default VPC] The names of the security groups. If you specify a network interface, you must specify any security groups as part of the network interface instead of using this parameter. Default: Amazon EC2 uses the default security group.
34502
34502
  */
34503
34503
  SecurityGroups?: SecurityGroupStringList;
34504
34504
  /**
34505
- * The ID of the subnet to launch the instance into. If you specify a network interface, you must specify any subnets as part of the network interface.
34505
+ * The ID of the subnet to launch the instance into. If you specify a network interface, you must specify any subnets as part of the network interface instead of using this parameter.
34506
34506
  */
34507
34507
  SubnetId?: SubnetId;
34508
34508
  /**
@@ -34538,7 +34538,7 @@ declare namespace EC2 {
34538
34538
  */
34539
34539
  InstanceInitiatedShutdownBehavior?: ShutdownBehavior;
34540
34540
  /**
34541
- * The network interfaces to associate with the instance. If you specify a network interface, you must specify any security groups and subnets as part of the network interface.
34541
+ * The network interfaces to associate with the instance.
34542
34542
  */
34543
34543
  NetworkInterfaces?: InstanceNetworkInterfaceSpecificationList;
34544
34544
  /**
@@ -34546,11 +34546,11 @@ declare namespace EC2 {
34546
34546
  */
34547
34547
  PrivateIpAddress?: String;
34548
34548
  /**
34549
- * Deprecated. Amazon Elastic Graphics reached end of life on January 8, 2024. For workloads that require graphics acceleration, we recommend that you use Amazon EC2 G4ad, G4dn, or G5 instances.
34549
+ * An elastic GPU to associate with the instance. Amazon Elastic Graphics reached end of life on January 8, 2024.
34550
34550
  */
34551
34551
  ElasticGpuSpecification?: ElasticGpuSpecifications;
34552
34552
  /**
34553
- * An elastic inference accelerator to associate with the instance. Elastic inference accelerators are a resource you can attach to your Amazon EC2 instances to accelerate your Deep Learning (DL) inference workloads. You cannot specify accelerators from different generations in the same request. Starting April 15, 2023, Amazon Web Services will not onboard new customers to Amazon Elastic Inference (EI), and will help current customers migrate their workloads to options that offer better price and performance. After April 15, 2023, new customers will not be able to launch instances with Amazon EI accelerators in Amazon SageMaker, Amazon ECS, or Amazon EC2. However, customers who have used Amazon EI at least once during the past 30-day period are considered current customers and will be able to continue using the service.
34553
+ * An elastic inference accelerator to associate with the instance. Amazon Elastic Inference (EI) is no longer available to new customers. For more information, see Amazon Elastic Inference FAQs.
34554
34554
  */
34555
34555
  ElasticInferenceAccelerators?: ElasticInferenceAccelerators;
34556
34556
  /**
@@ -35110,7 +35110,7 @@ declare namespace EC2 {
35110
35110
  */
35111
35111
  Filters: FilterList;
35112
35112
  /**
35113
- * The maximum number of routes to return.
35113
+ * The maximum number of routes to return. If a value is not provided, the default is 1000.
35114
35114
  */
35115
35115
  MaxResults?: TransitGatewayMaxResults;
35116
35116
  /**
@@ -35856,7 +35856,7 @@ declare namespace EC2 {
35856
35856
  }
35857
35857
  export interface SpotFleetLaunchSpecification {
35858
35858
  /**
35859
- * The security groups.
35859
+ * The security groups. If you specify a network interface, you must specify any security groups as part of the network interface instead of using this parameter.
35860
35860
  */
35861
35861
  SecurityGroups?: GroupIdentifierList;
35862
35862
  /**
@@ -35896,7 +35896,7 @@ declare namespace EC2 {
35896
35896
  */
35897
35897
  Monitoring?: SpotFleetMonitoring;
35898
35898
  /**
35899
- * One or more network interfaces. If you specify a network interface, you must specify subnet IDs and security group IDs using the network interface. SpotFleetLaunchSpecification currently does not support Elastic Fabric Adapter (EFA). To specify an EFA, you must use LaunchTemplateConfig.
35899
+ * The network interfaces. SpotFleetLaunchSpecification does not support Elastic Fabric Adapter (EFA). You must use LaunchTemplateConfig instead.
35900
35900
  */
35901
35901
  NetworkInterfaces?: InstanceNetworkInterfaceSpecificationList;
35902
35902
  /**
@@ -35912,7 +35912,7 @@ declare namespace EC2 {
35912
35912
  */
35913
35913
  SpotPrice?: String;
35914
35914
  /**
35915
- * The IDs of the subnets in which to launch the instances. To specify multiple subnets, separate them using commas; for example, "subnet-1234abcdeexample1, subnet-0987cdef6example2".
35915
+ * The IDs of the subnets in which to launch the instances. To specify multiple subnets, separate them using commas; for example, "subnet-1234abcdeexample1, subnet-0987cdef6example2". If you specify a network interface, you must specify any subnets as part of the network interface instead of using this parameter.
35916
35916
  */
35917
35917
  SubnetId?: SubnetId;
35918
35918
  /**
@@ -347,6 +347,8 @@ declare namespace EMRServerless {
347
347
  */
348
348
  monitoringConfiguration?: MonitoringConfiguration;
349
349
  }
350
+ export type ConfigurationPropertyKey = string;
351
+ export type ConfigurationPropertyValue = string;
350
352
  export type CpuSize = string;
351
353
  export interface CreateApplicationRequest {
352
354
  /**
@@ -791,6 +793,10 @@ declare namespace EMRServerless {
791
793
  * The Amazon CloudWatch configuration for monitoring logs. You can configure your jobs to send log information to CloudWatch.
792
794
  */
793
795
  cloudWatchLoggingConfiguration?: CloudWatchLoggingConfiguration;
796
+ /**
797
+ * The monitoring configuration object you can configure to send metrics to Amazon Managed Service for Prometheus for a job run.
798
+ */
799
+ prometheusMonitoringConfiguration?: PrometheusMonitoringConfiguration;
794
800
  }
795
801
  export interface NetworkConfiguration {
796
802
  /**
@@ -803,6 +809,13 @@ declare namespace EMRServerless {
803
809
  securityGroupIds?: SecurityGroupIds;
804
810
  }
805
811
  export type NextToken = string;
812
+ export interface PrometheusMonitoringConfiguration {
813
+ /**
814
+ * The remote write URL in the Amazon Managed Service for Prometheus workspace to send metrics to.
815
+ */
816
+ remoteWriteUrl?: PrometheusUrlString;
817
+ }
818
+ export type PrometheusUrlString = string;
806
819
  export type Query = string;
807
820
  export type ReleaseLabel = string;
808
821
  export type RequestIdentityUserArn = string;
@@ -833,7 +846,7 @@ declare namespace EMRServerless {
833
846
  }
834
847
  export type SecurityGroupIds = SecurityGroupString[];
835
848
  export type SecurityGroupString = string;
836
- export type SensitivePropertiesMap = {[key: string]: String1024};
849
+ export type SensitivePropertiesMap = {[key: string]: ConfigurationPropertyValue};
837
850
  export interface SparkSubmit {
838
851
  /**
839
852
  * The entry point for the Spark submit job run.
@@ -1207,7 +1207,7 @@ declare namespace GuardDuty {
1207
1207
  */
1208
1208
  Rank?: FilterRank;
1209
1209
  /**
1210
- * Represents the criteria to be used in the filter for querying findings. You can only use the following attributes to query findings: accountId id region severity To filter on the basis of severity, the API and CLI use the following input list for the FindingCriteria condition: Low: ["1", "2", "3"] Medium: ["4", "5", "6"] High: ["7", "8", "9"] For more information, see Severity levels for GuardDuty findings. type updatedAt Type: ISO 8601 string format: YYYY-MM-DDTHH:MM:SS.SSSZ or YYYY-MM-DDTHH:MM:SSZ depending on whether the value contains milliseconds. resource.accessKeyDetails.accessKeyId resource.accessKeyDetails.principalId resource.accessKeyDetails.userName resource.accessKeyDetails.userType resource.instanceDetails.iamInstanceProfile.id resource.instanceDetails.imageId resource.instanceDetails.instanceId resource.instanceDetails.tags.key resource.instanceDetails.tags.value resource.instanceDetails.networkInterfaces.ipv6Addresses resource.instanceDetails.networkInterfaces.privateIpAddresses.privateIpAddress resource.instanceDetails.networkInterfaces.publicDnsName resource.instanceDetails.networkInterfaces.publicIp resource.instanceDetails.networkInterfaces.securityGroups.groupId resource.instanceDetails.networkInterfaces.securityGroups.groupName resource.instanceDetails.networkInterfaces.subnetId resource.instanceDetails.networkInterfaces.vpcId resource.instanceDetails.outpostArn resource.resourceType resource.s3BucketDetails.publicAccess.effectivePermissions resource.s3BucketDetails.name resource.s3BucketDetails.tags.key resource.s3BucketDetails.tags.value resource.s3BucketDetails.type service.action.actionType service.action.awsApiCallAction.api service.action.awsApiCallAction.callerType service.action.awsApiCallAction.errorCode service.action.awsApiCallAction.remoteIpDetails.city.cityName service.action.awsApiCallAction.remoteIpDetails.country.countryName service.action.awsApiCallAction.remoteIpDetails.ipAddressV4 service.action.awsApiCallAction.remoteIpDetails.organization.asn service.action.awsApiCallAction.remoteIpDetails.organization.asnOrg service.action.awsApiCallAction.serviceName service.action.dnsRequestAction.domain service.action.dnsRequestAction.domainWithSuffix service.action.networkConnectionAction.blocked service.action.networkConnectionAction.connectionDirection service.action.networkConnectionAction.localPortDetails.port service.action.networkConnectionAction.protocol service.action.networkConnectionAction.remoteIpDetails.city.cityName service.action.networkConnectionAction.remoteIpDetails.country.countryName service.action.networkConnectionAction.remoteIpDetails.ipAddressV4 service.action.networkConnectionAction.remoteIpDetails.organization.asn service.action.networkConnectionAction.remoteIpDetails.organization.asnOrg service.action.networkConnectionAction.remotePortDetails.port service.action.awsApiCallAction.remoteAccountDetails.affiliated service.action.kubernetesApiCallAction.remoteIpDetails.ipAddressV4 service.action.kubernetesApiCallAction.namespace service.action.kubernetesApiCallAction.remoteIpDetails.organization.asn service.action.kubernetesApiCallAction.requestUri service.action.kubernetesApiCallAction.statusCode service.action.networkConnectionAction.localIpDetails.ipAddressV4 service.action.networkConnectionAction.protocol service.action.awsApiCallAction.serviceName service.action.awsApiCallAction.remoteAccountDetails.accountId service.additionalInfo.threatListName service.resourceRole resource.eksClusterDetails.name resource.kubernetesDetails.kubernetesWorkloadDetails.name resource.kubernetesDetails.kubernetesWorkloadDetails.namespace resource.kubernetesDetails.kubernetesUserDetails.username resource.kubernetesDetails.kubernetesWorkloadDetails.containers.image resource.kubernetesDetails.kubernetesWorkloadDetails.containers.imagePrefix service.ebsVolumeScanDetails.scanId service.ebsVolumeScanDetails.scanDetections.threatDetectedByName.threatNames.name service.ebsVolumeScanDetails.scanDetections.threatDetectedByName.threatNames.severity service.ebsVolumeScanDetails.scanDetections.threatDetectedByName.threatNames.filePaths.hash resource.ecsClusterDetails.name resource.ecsClusterDetails.taskDetails.containers.image resource.ecsClusterDetails.taskDetails.definitionArn resource.containerDetails.image resource.rdsDbInstanceDetails.dbInstanceIdentifier resource.rdsDbInstanceDetails.dbClusterIdentifier resource.rdsDbInstanceDetails.engine resource.rdsDbUserDetails.user resource.rdsDbInstanceDetails.tags.key resource.rdsDbInstanceDetails.tags.value service.runtimeDetails.process.executableSha256 service.runtimeDetails.process.name service.runtimeDetails.process.name resource.lambdaDetails.functionName resource.lambdaDetails.functionArn resource.lambdaDetails.tags.key resource.lambdaDetails.tags.value
1210
+ * Represents the criteria to be used in the filter for querying findings. You can only use the following attributes to query findings: accountId id region severity To filter on the basis of severity, the API and CLI use the following input list for the FindingCriteria condition: Low: ["1", "2", "3"] Medium: ["4", "5", "6"] High: ["7", "8", "9"] For more information, see Severity levels for GuardDuty findings. type updatedAt Type: ISO 8601 string format: YYYY-MM-DDTHH:MM:SS.SSSZ or YYYY-MM-DDTHH:MM:SSZ depending on whether the value contains milliseconds. resource.accessKeyDetails.accessKeyId resource.accessKeyDetails.principalId resource.accessKeyDetails.userName resource.accessKeyDetails.userType resource.instanceDetails.iamInstanceProfile.id resource.instanceDetails.imageId resource.instanceDetails.instanceId resource.instanceDetails.tags.key resource.instanceDetails.tags.value resource.instanceDetails.networkInterfaces.ipv6Addresses resource.instanceDetails.networkInterfaces.privateIpAddresses.privateIpAddress resource.instanceDetails.networkInterfaces.publicDnsName resource.instanceDetails.networkInterfaces.publicIp resource.instanceDetails.networkInterfaces.securityGroups.groupId resource.instanceDetails.networkInterfaces.securityGroups.groupName resource.instanceDetails.networkInterfaces.subnetId resource.instanceDetails.networkInterfaces.vpcId resource.instanceDetails.outpostArn resource.resourceType resource.s3BucketDetails.publicAccess.effectivePermissions resource.s3BucketDetails.name resource.s3BucketDetails.tags.key resource.s3BucketDetails.tags.value resource.s3BucketDetails.type service.action.actionType service.action.awsApiCallAction.api service.action.awsApiCallAction.callerType service.action.awsApiCallAction.errorCode service.action.awsApiCallAction.remoteIpDetails.city.cityName service.action.awsApiCallAction.remoteIpDetails.country.countryName service.action.awsApiCallAction.remoteIpDetails.ipAddressV4 service.action.awsApiCallAction.remoteIpDetails.ipAddressV6 service.action.awsApiCallAction.remoteIpDetails.organization.asn service.action.awsApiCallAction.remoteIpDetails.organization.asnOrg service.action.awsApiCallAction.serviceName service.action.dnsRequestAction.domain service.action.dnsRequestAction.domainWithSuffix service.action.networkConnectionAction.blocked service.action.networkConnectionAction.connectionDirection service.action.networkConnectionAction.localPortDetails.port service.action.networkConnectionAction.protocol service.action.networkConnectionAction.remoteIpDetails.city.cityName service.action.networkConnectionAction.remoteIpDetails.country.countryName service.action.networkConnectionAction.remoteIpDetails.ipAddressV4 service.action.networkConnectionAction.remoteIpDetails.ipAddressV6 service.action.networkConnectionAction.remoteIpDetails.organization.asn service.action.networkConnectionAction.remoteIpDetails.organization.asnOrg service.action.networkConnectionAction.remotePortDetails.port service.action.awsApiCallAction.remoteAccountDetails.affiliated service.action.kubernetesApiCallAction.remoteIpDetails.ipAddressV4 service.action.kubernetesApiCallAction.remoteIpDetails.ipAddressV6 service.action.kubernetesApiCallAction.namespace service.action.kubernetesApiCallAction.remoteIpDetails.organization.asn service.action.kubernetesApiCallAction.requestUri service.action.kubernetesApiCallAction.statusCode service.action.networkConnectionAction.localIpDetails.ipAddressV4 service.action.networkConnectionAction.localIpDetails.ipAddressV6 service.action.networkConnectionAction.protocol service.action.awsApiCallAction.serviceName service.action.awsApiCallAction.remoteAccountDetails.accountId service.additionalInfo.threatListName service.resourceRole resource.eksClusterDetails.name resource.kubernetesDetails.kubernetesWorkloadDetails.name resource.kubernetesDetails.kubernetesWorkloadDetails.namespace resource.kubernetesDetails.kubernetesUserDetails.username resource.kubernetesDetails.kubernetesWorkloadDetails.containers.image resource.kubernetesDetails.kubernetesWorkloadDetails.containers.imagePrefix service.ebsVolumeScanDetails.scanId service.ebsVolumeScanDetails.scanDetections.threatDetectedByName.threatNames.name service.ebsVolumeScanDetails.scanDetections.threatDetectedByName.threatNames.severity service.ebsVolumeScanDetails.scanDetections.threatDetectedByName.threatNames.filePaths.hash resource.ecsClusterDetails.name resource.ecsClusterDetails.taskDetails.containers.image resource.ecsClusterDetails.taskDetails.definitionArn resource.containerDetails.image resource.rdsDbInstanceDetails.dbInstanceIdentifier resource.rdsDbInstanceDetails.dbClusterIdentifier resource.rdsDbInstanceDetails.engine resource.rdsDbUserDetails.user resource.rdsDbInstanceDetails.tags.key resource.rdsDbInstanceDetails.tags.value service.runtimeDetails.process.executableSha256 service.runtimeDetails.process.name service.runtimeDetails.process.name resource.lambdaDetails.functionName resource.lambdaDetails.functionArn resource.lambdaDetails.tags.key resource.lambdaDetails.tags.value
1211
1211
  */
1212
1212
  FindingCriteria: FindingCriteria;
1213
1213
  /**
@@ -3169,6 +3169,10 @@ declare namespace GuardDuty {
3169
3169
  * The IPv4 local address of the connection.
3170
3170
  */
3171
3171
  IpAddressV4?: SensitiveString;
3172
+ /**
3173
+ * The IPv6 local address of the connection.
3174
+ */
3175
+ IpAddressV6?: SensitiveString;
3172
3176
  }
3173
3177
  export interface LocalPortDetails {
3174
3178
  /**
@@ -3885,6 +3889,10 @@ declare namespace GuardDuty {
3885
3889
  * The IPv4 remote address of the connection.
3886
3890
  */
3887
3891
  IpAddressV4?: SensitiveString;
3892
+ /**
3893
+ * The IPv6 remote address of the connection.
3894
+ */
3895
+ IpAddressV6?: SensitiveString;
3888
3896
  /**
3889
3897
  * The ISP organization information of the remote IP address.
3890
3898
  */