cdk-lambda-subminute 2.0.293 → 2.0.295

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 (41) hide show
  1. package/.jsii +3 -3
  2. package/lib/cdk-lambda-subminute.js +3 -3
  3. package/node_modules/aws-sdk/CHANGELOG.md +22 -1
  4. package/node_modules/aws-sdk/README.md +1 -1
  5. package/node_modules/aws-sdk/apis/cloudformation-2010-05-15.min.json +48 -47
  6. package/node_modules/aws-sdk/apis/cloudtrail-2013-11-01.min.json +11 -8
  7. package/node_modules/aws-sdk/apis/comprehend-2017-11-27.min.json +55 -0
  8. package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +4 -0
  9. package/node_modules/aws-sdk/apis/controltower-2018-05-10.min.json +104 -9
  10. package/node_modules/aws-sdk/apis/cur-2017-01-06.min.json +86 -1
  11. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +1070 -950
  12. package/node_modules/aws-sdk/apis/eks-2017-11-01.min.json +242 -39
  13. package/node_modules/aws-sdk/apis/entitlement.marketplace-2017-01-11.paginators.json +5 -0
  14. package/node_modules/aws-sdk/apis/logs-2014-03-28.min.json +372 -26
  15. package/node_modules/aws-sdk/apis/logs-2014-03-28.paginators.json +18 -0
  16. package/node_modules/aws-sdk/apis/mediaconvert-2017-08-29.min.json +177 -164
  17. package/node_modules/aws-sdk/apis/omics-2022-11-28.min.json +1 -3
  18. package/node_modules/aws-sdk/apis/sqs-2012-11-05.min.json +13 -13
  19. package/node_modules/aws-sdk/clients/cloudformation.d.ts +15 -10
  20. package/node_modules/aws-sdk/clients/cloudtrail.d.ts +50 -22
  21. package/node_modules/aws-sdk/clients/cloudwatchlogs.d.ts +422 -2
  22. package/node_modules/aws-sdk/clients/comprehend.d.ts +73 -19
  23. package/node_modules/aws-sdk/clients/connect.d.ts +5 -1
  24. package/node_modules/aws-sdk/clients/controltower.d.ts +94 -22
  25. package/node_modules/aws-sdk/clients/cur.d.ts +104 -10
  26. package/node_modules/aws-sdk/clients/ec2.d.ts +136 -7
  27. package/node_modules/aws-sdk/clients/eks.d.ts +221 -9
  28. package/node_modules/aws-sdk/clients/fms.d.ts +6 -6
  29. package/node_modules/aws-sdk/clients/lambda.d.ts +1 -1
  30. package/node_modules/aws-sdk/clients/marketplaceentitlementservice.d.ts +2 -1
  31. package/node_modules/aws-sdk/clients/mediaconvert.d.ts +26 -12
  32. package/node_modules/aws-sdk/clients/omics.d.ts +5 -4
  33. package/node_modules/aws-sdk/clients/rds.d.ts +11 -11
  34. package/node_modules/aws-sdk/clients/sqs.d.ts +1 -2
  35. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  36. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +15 -15
  37. package/node_modules/aws-sdk/dist/aws-sdk.js +1680 -1048
  38. package/node_modules/aws-sdk/dist/aws-sdk.min.js +91 -91
  39. package/node_modules/aws-sdk/lib/core.js +1 -1
  40. package/node_modules/aws-sdk/package.json +1 -1
  41. package/package.json +3 -4
@@ -12,27 +12,35 @@ declare class CUR extends Service {
12
12
  constructor(options?: CUR.Types.ClientConfiguration)
13
13
  config: Config & CUR.Types.ClientConfiguration;
14
14
  /**
15
- * Deletes the specified report.
15
+ * Deletes the specified report. Any tags associated with the report are also deleted.
16
16
  */
17
17
  deleteReportDefinition(params: CUR.Types.DeleteReportDefinitionRequest, callback?: (err: AWSError, data: CUR.Types.DeleteReportDefinitionResponse) => void): Request<CUR.Types.DeleteReportDefinitionResponse, AWSError>;
18
18
  /**
19
- * Deletes the specified report.
19
+ * Deletes the specified report. Any tags associated with the report are also deleted.
20
20
  */
21
21
  deleteReportDefinition(callback?: (err: AWSError, data: CUR.Types.DeleteReportDefinitionResponse) => void): Request<CUR.Types.DeleteReportDefinitionResponse, AWSError>;
22
22
  /**
23
- * Lists the AWS Cost and Usage reports available to this account.
23
+ * Lists the Amazon Web Services Cost and Usage Report available to this account.
24
24
  */
25
25
  describeReportDefinitions(params: CUR.Types.DescribeReportDefinitionsRequest, callback?: (err: AWSError, data: CUR.Types.DescribeReportDefinitionsResponse) => void): Request<CUR.Types.DescribeReportDefinitionsResponse, AWSError>;
26
26
  /**
27
- * Lists the AWS Cost and Usage reports available to this account.
27
+ * Lists the Amazon Web Services Cost and Usage Report available to this account.
28
28
  */
29
29
  describeReportDefinitions(callback?: (err: AWSError, data: CUR.Types.DescribeReportDefinitionsResponse) => void): Request<CUR.Types.DescribeReportDefinitionsResponse, AWSError>;
30
30
  /**
31
- * Allows you to programatically update your report preferences.
31
+ * Lists the tags associated with the specified report definition.
32
+ */
33
+ listTagsForResource(params: CUR.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: CUR.Types.ListTagsForResourceResponse) => void): Request<CUR.Types.ListTagsForResourceResponse, AWSError>;
34
+ /**
35
+ * Lists the tags associated with the specified report definition.
36
+ */
37
+ listTagsForResource(callback?: (err: AWSError, data: CUR.Types.ListTagsForResourceResponse) => void): Request<CUR.Types.ListTagsForResourceResponse, AWSError>;
38
+ /**
39
+ * Allows you to programmatically update your report preferences.
32
40
  */
33
41
  modifyReportDefinition(params: CUR.Types.ModifyReportDefinitionRequest, callback?: (err: AWSError, data: CUR.Types.ModifyReportDefinitionResponse) => void): Request<CUR.Types.ModifyReportDefinitionResponse, AWSError>;
34
42
  /**
35
- * Allows you to programatically update your report preferences.
43
+ * Allows you to programmatically update your report preferences.
36
44
  */
37
45
  modifyReportDefinition(callback?: (err: AWSError, data: CUR.Types.ModifyReportDefinitionResponse) => void): Request<CUR.Types.ModifyReportDefinitionResponse, AWSError>;
38
46
  /**
@@ -43,6 +51,22 @@ declare class CUR extends Service {
43
51
  * Creates a new report using the description that you provide.
44
52
  */
45
53
  putReportDefinition(callback?: (err: AWSError, data: CUR.Types.PutReportDefinitionResponse) => void): Request<CUR.Types.PutReportDefinitionResponse, AWSError>;
54
+ /**
55
+ * Associates a set of tags with a report definition.
56
+ */
57
+ tagResource(params: CUR.Types.TagResourceRequest, callback?: (err: AWSError, data: CUR.Types.TagResourceResponse) => void): Request<CUR.Types.TagResourceResponse, AWSError>;
58
+ /**
59
+ * Associates a set of tags with a report definition.
60
+ */
61
+ tagResource(callback?: (err: AWSError, data: CUR.Types.TagResourceResponse) => void): Request<CUR.Types.TagResourceResponse, AWSError>;
62
+ /**
63
+ * Disassociates a set of tags from a report definition.
64
+ */
65
+ untagResource(params: CUR.Types.UntagResourceRequest, callback?: (err: AWSError, data: CUR.Types.UntagResourceResponse) => void): Request<CUR.Types.UntagResourceResponse, AWSError>;
66
+ /**
67
+ * Disassociates a set of tags from a report definition.
68
+ */
69
+ untagResource(callback?: (err: AWSError, data: CUR.Types.UntagResourceResponse) => void): Request<CUR.Types.UntagResourceResponse, AWSError>;
46
70
  }
47
71
  declare namespace CUR {
48
72
  export type AWSRegion = "af-south-1"|"ap-east-1"|"ap-south-1"|"ap-south-2"|"ap-southeast-1"|"ap-southeast-2"|"ap-southeast-3"|"ap-northeast-1"|"ap-northeast-2"|"ap-northeast-3"|"ca-central-1"|"eu-central-1"|"eu-central-2"|"eu-west-1"|"eu-west-2"|"eu-west-3"|"eu-north-1"|"eu-south-1"|"eu-south-2"|"me-central-1"|"me-south-1"|"sa-east-1"|"us-east-1"|"us-east-2"|"us-west-1"|"us-west-2"|"cn-north-1"|"cn-northwest-1"|string;
@@ -54,7 +78,7 @@ declare namespace CUR {
54
78
  /**
55
79
  * The name of the report that you want to delete. The name must be unique, is case sensitive, and can't include spaces.
56
80
  */
57
- ReportName?: ReportName;
81
+ ReportName: ReportName;
58
82
  }
59
83
  export interface DeleteReportDefinitionResponse {
60
84
  ResponseMessage?: DeleteResponseMessage;
@@ -66,12 +90,26 @@ declare namespace CUR {
66
90
  }
67
91
  export interface DescribeReportDefinitionsResponse {
68
92
  /**
69
- * A list of AWS Cost and Usage reports owned by the account.
93
+ * An Amazon Web Services Cost and Usage Report list owned by the account.
70
94
  */
71
95
  ReportDefinitions?: ReportDefinitionList;
72
96
  NextToken?: GenericString;
73
97
  }
74
98
  export type GenericString = string;
99
+ export type LastDelivery = string;
100
+ export type LastStatus = "SUCCESS"|"ERROR_PERMISSIONS"|"ERROR_NO_BUCKET"|string;
101
+ export interface ListTagsForResourceRequest {
102
+ /**
103
+ * The report name of the report definition that tags are to be returned for.
104
+ */
105
+ ReportName: ReportName;
106
+ }
107
+ export interface ListTagsForResourceResponse {
108
+ /**
109
+ * The tags assigned to the report definition resource.
110
+ */
111
+ Tags?: TagList;
112
+ }
75
113
  export type MaxResults = number;
76
114
  export interface ModifyReportDefinitionRequest {
77
115
  ReportName: ReportName;
@@ -84,6 +122,10 @@ declare namespace CUR {
84
122
  * Represents the output of the PutReportDefinition operation. The content consists of the detailed metadata and data file information.
85
123
  */
86
124
  ReportDefinition: ReportDefinition;
125
+ /**
126
+ * The tags to be assigned to the report definition resource.
127
+ */
128
+ Tags?: TagList;
87
129
  }
88
130
  export interface PutReportDefinitionResponse {
89
131
  }
@@ -113,19 +155,71 @@ declare namespace CUR {
113
155
  */
114
156
  ReportVersioning?: ReportVersioning;
115
157
  /**
116
- * The Amazon resource name of the billing view. You can get this value by using the billing view service public APIs.
158
+ * The Amazon resource name of the billing view. The BillingViewArn is needed to create Amazon Web Services Cost and Usage Report for each billing group maintained in the Amazon Web Services Billing Conductor service. The BillingViewArn for a billing group can be constructed as: arn:aws:billing::payer-account-id:billingview/billing-group-primary-account-id
117
159
  */
118
160
  BillingViewArn?: BillingViewArn;
161
+ /**
162
+ * The status of the report.
163
+ */
164
+ ReportStatus?: ReportStatus;
119
165
  }
120
166
  export type ReportDefinitionList = ReportDefinition[];
121
167
  export type ReportFormat = "textORcsv"|"Parquet"|string;
122
168
  export type ReportName = string;
169
+ export interface ReportStatus {
170
+ /**
171
+ * A timestamp that gives the date of a report delivery.
172
+ */
173
+ lastDelivery?: LastDelivery;
174
+ /**
175
+ * An enum that gives the status of a report delivery.
176
+ */
177
+ lastStatus?: LastStatus;
178
+ }
123
179
  export type ReportVersioning = "CREATE_NEW_REPORT"|"OVERWRITE_REPORT"|string;
124
180
  export type S3Bucket = string;
125
181
  export type S3Prefix = string;
126
- export type SchemaElement = "RESOURCES"|"SPLIT_COST_ALLOCATION_DATA"|string;
182
+ export type SchemaElement = "RESOURCES"|"SPLIT_COST_ALLOCATION_DATA"|"MANUAL_DISCOUNT_COMPATIBILITY"|string;
127
183
  export type SchemaElementList = SchemaElement[];
184
+ export interface Tag {
185
+ /**
186
+ * The key of the tag. Tag keys are case sensitive. Each report definition can only have up to one tag with the same key. If you try to add an existing tag with the same key, the existing tag value will be updated to the new value.
187
+ */
188
+ Key: TagKey;
189
+ /**
190
+ * The value of the tag. Tag values are case-sensitive. This can be an empty string.
191
+ */
192
+ Value: TagValue;
193
+ }
194
+ export type TagKey = string;
195
+ export type TagKeyList = TagKey[];
196
+ export type TagList = Tag[];
197
+ export interface TagResourceRequest {
198
+ /**
199
+ * The report name of the report definition that tags are to be associated with.
200
+ */
201
+ ReportName: ReportName;
202
+ /**
203
+ * The tags to be assigned to the report definition resource.
204
+ */
205
+ Tags: TagList;
206
+ }
207
+ export interface TagResourceResponse {
208
+ }
209
+ export type TagValue = string;
128
210
  export type TimeUnit = "HOURLY"|"DAILY"|"MONTHLY"|string;
211
+ export interface UntagResourceRequest {
212
+ /**
213
+ * The report name of the report definition that tags are to be disassociated from.
214
+ */
215
+ ReportName: ReportName;
216
+ /**
217
+ * The tags to be disassociated from the report definition resource.
218
+ */
219
+ TagKeys: TagKeyList;
220
+ }
221
+ export interface UntagResourceResponse {
222
+ }
129
223
  /**
130
224
  * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
131
225
  */
@@ -3044,6 +3044,14 @@ declare class EC2 extends Service {
3044
3044
  * Disables access to the EC2 serial console of all instances for your account. By default, access to the EC2 serial console is disabled for your account. For more information, see Manage account access to the EC2 serial console in the Amazon EC2 User Guide.
3045
3045
  */
3046
3046
  disableSerialConsoleAccess(callback?: (err: AWSError, data: EC2.Types.DisableSerialConsoleAccessResult) => void): Request<EC2.Types.DisableSerialConsoleAccessResult, AWSError>;
3047
+ /**
3048
+ * Disables the block public access for snapshots setting at the account level for the specified Amazon Web Services Region. After you disable block public access for snapshots in a Region, users can publicly share snapshots in that Region. If block public access is enabled in block-all-sharing mode, and you disable block public access, all snapshots that were previously publicly shared are no longer treated as private and they become publicly accessible again. For more information, see Block public access for snapshots in the Amazon Elastic Compute Cloud User Guide .
3049
+ */
3050
+ disableSnapshotBlockPublicAccess(params: EC2.Types.DisableSnapshotBlockPublicAccessRequest, callback?: (err: AWSError, data: EC2.Types.DisableSnapshotBlockPublicAccessResult) => void): Request<EC2.Types.DisableSnapshotBlockPublicAccessResult, AWSError>;
3051
+ /**
3052
+ * Disables the block public access for snapshots setting at the account level for the specified Amazon Web Services Region. After you disable block public access for snapshots in a Region, users can publicly share snapshots in that Region. If block public access is enabled in block-all-sharing mode, and you disable block public access, all snapshots that were previously publicly shared are no longer treated as private and they become publicly accessible again. For more information, see Block public access for snapshots in the Amazon Elastic Compute Cloud User Guide .
3053
+ */
3054
+ disableSnapshotBlockPublicAccess(callback?: (err: AWSError, data: EC2.Types.DisableSnapshotBlockPublicAccessResult) => void): Request<EC2.Types.DisableSnapshotBlockPublicAccessResult, AWSError>;
3047
3055
  /**
3048
3056
  * Disables the specified resource attachment from propagating routes to the specified propagation route table.
3049
3057
  */
@@ -3276,6 +3284,14 @@ declare class EC2 extends Service {
3276
3284
  * Enables access to the EC2 serial console of all instances for your account. By default, access to the EC2 serial console is disabled for your account. For more information, see Manage account access to the EC2 serial console in the Amazon EC2 User Guide.
3277
3285
  */
3278
3286
  enableSerialConsoleAccess(callback?: (err: AWSError, data: EC2.Types.EnableSerialConsoleAccessResult) => void): Request<EC2.Types.EnableSerialConsoleAccessResult, AWSError>;
3287
+ /**
3288
+ * Enables or modifies the block public access for snapshots setting at the account level for the specified Amazon Web Services Region. After you enable block public access for snapshots in a Region, users can no longer request public sharing for snapshots in that Region. Snapshots that are already publicly shared are either treated as private or they remain publicly shared, depending on the State that you specify. If block public access is enabled in block-all-sharing mode, and you change the mode to block-new-sharing, all snapshots that were previously publicly shared are no longer treated as private and they become publicly accessible again. For more information, see Block public access for snapshots in the Amazon Elastic Compute Cloud User Guide.
3289
+ */
3290
+ enableSnapshotBlockPublicAccess(params: EC2.Types.EnableSnapshotBlockPublicAccessRequest, callback?: (err: AWSError, data: EC2.Types.EnableSnapshotBlockPublicAccessResult) => void): Request<EC2.Types.EnableSnapshotBlockPublicAccessResult, AWSError>;
3291
+ /**
3292
+ * Enables or modifies the block public access for snapshots setting at the account level for the specified Amazon Web Services Region. After you enable block public access for snapshots in a Region, users can no longer request public sharing for snapshots in that Region. Snapshots that are already publicly shared are either treated as private or they remain publicly shared, depending on the State that you specify. If block public access is enabled in block-all-sharing mode, and you change the mode to block-new-sharing, all snapshots that were previously publicly shared are no longer treated as private and they become publicly accessible again. For more information, see Block public access for snapshots in the Amazon Elastic Compute Cloud User Guide.
3293
+ */
3294
+ enableSnapshotBlockPublicAccess(callback?: (err: AWSError, data: EC2.Types.EnableSnapshotBlockPublicAccessResult) => void): Request<EC2.Types.EnableSnapshotBlockPublicAccessResult, AWSError>;
3279
3295
  /**
3280
3296
  * Enables the specified attachment to propagate routes to the specified propagation route table.
3281
3297
  */
@@ -3596,6 +3612,14 @@ declare class EC2 extends Service {
3596
3612
  * Retrieves the access status of your account to the EC2 serial console of all instances. By default, access to the EC2 serial console is disabled for your account. For more information, see Manage account access to the EC2 serial console in the Amazon EC2 User Guide.
3597
3613
  */
3598
3614
  getSerialConsoleAccessStatus(callback?: (err: AWSError, data: EC2.Types.GetSerialConsoleAccessStatusResult) => void): Request<EC2.Types.GetSerialConsoleAccessStatusResult, AWSError>;
3615
+ /**
3616
+ * Gets the current state of block public access for snapshots setting for the account and Region. For more information, see Block public access for snapshots in the Amazon Elastic Compute Cloud User Guide.
3617
+ */
3618
+ getSnapshotBlockPublicAccessState(params: EC2.Types.GetSnapshotBlockPublicAccessStateRequest, callback?: (err: AWSError, data: EC2.Types.GetSnapshotBlockPublicAccessStateResult) => void): Request<EC2.Types.GetSnapshotBlockPublicAccessStateResult, AWSError>;
3619
+ /**
3620
+ * Gets the current state of block public access for snapshots setting for the account and Region. For more information, see Block public access for snapshots in the Amazon Elastic Compute Cloud User Guide.
3621
+ */
3622
+ getSnapshotBlockPublicAccessState(callback?: (err: AWSError, data: EC2.Types.GetSnapshotBlockPublicAccessStateResult) => void): Request<EC2.Types.GetSnapshotBlockPublicAccessStateResult, AWSError>;
3599
3623
  /**
3600
3624
  * Calculates the Spot placement score for a Region or Availability Zone based on the specified target capacity and compute requirements. You can specify your compute requirements either by using InstanceRequirementsWithMetadata and letting Amazon EC2 choose the optimal instance types to fulfill your Spot request, or you can specify the instance types by using InstanceTypes. For more information, see Spot placement score in the Amazon EC2 User Guide.
3601
3625
  */
@@ -6708,11 +6732,11 @@ declare namespace EC2 {
6708
6732
  }
6709
6733
  export interface AttachmentEnaSrdSpecification {
6710
6734
  /**
6711
- * Indicates whether ENA Express is enabled for the network interface that's attached to the instance.
6735
+ * Indicates whether ENA Express is enabled for the network interface.
6712
6736
  */
6713
6737
  EnaSrdEnabled?: Boolean;
6714
6738
  /**
6715
- * ENA Express configuration for UDP network traffic.
6739
+ * Configures ENA Express for UDP network traffic.
6716
6740
  */
6717
6741
  EnaSrdUdpSpecification?: AttachmentEnaSrdUdpSpecification;
6718
6742
  }
@@ -14836,7 +14860,7 @@ declare namespace EC2 {
14836
14860
  }
14837
14861
  export interface DescribeInstancesRequest {
14838
14862
  /**
14839
- * The filters. affinity - The affinity setting for an instance running on a Dedicated Host (default | host). architecture - The instance architecture (i386 | x86_64 | arm64). availability-zone - The Availability Zone of the instance. block-device-mapping.attach-time - The attach time for an EBS volume mapped to the instance, for example, 2022-09-15T17:15:20.000Z. block-device-mapping.delete-on-termination - A Boolean that indicates whether the EBS volume is deleted on instance termination. block-device-mapping.device-name - The device name specified in the block device mapping (for example, /dev/sdh or xvdh). block-device-mapping.status - The status for the EBS volume (attaching | attached | detaching | detached). block-device-mapping.volume-id - The volume ID of the EBS volume. boot-mode - The boot mode that was specified by the AMI (legacy-bios | uefi | uefi-preferred). capacity-reservation-id - The ID of the Capacity Reservation into which the instance was launched. capacity-reservation-specification.capacity-reservation-preference - The instance's Capacity Reservation preference (open | none). capacity-reservation-specification.capacity-reservation-target.capacity-reservation-id - The ID of the targeted Capacity Reservation. capacity-reservation-specification.capacity-reservation-target.capacity-reservation-resource-group-arn - The ARN of the targeted Capacity Reservation group. client-token - The idempotency token you provided when you launched the instance. current-instance-boot-mode - The boot mode that is used to launch the instance at launch or start (legacy-bios | uefi). dns-name - The public DNS name of the instance. ebs-optimized - A Boolean that indicates whether the instance is optimized for Amazon EBS I/O. ena-support - A Boolean that indicates whether the instance is enabled for enhanced networking with ENA. enclave-options.enabled - A Boolean that indicates whether the instance is enabled for Amazon Web Services Nitro Enclaves. hibernation-options.configured - A Boolean that indicates whether the instance is enabled for hibernation. A value of true means that the instance is enabled for hibernation. host-id - The ID of the Dedicated Host on which the instance is running, if applicable. hypervisor - The hypervisor type of the instance (ovm | xen). The value xen is used for both Xen and Nitro hypervisors. iam-instance-profile.arn - The instance profile associated with the instance. Specified as an ARN. iam-instance-profile.id - The instance profile associated with the instance. Specified as an ID. iam-instance-profile.name - The instance profile associated with the instance. Specified as an name. image-id - The ID of the image used to launch the instance. instance-id - The ID of the instance. instance-lifecycle - Indicates whether this is a Spot Instance or a Scheduled Instance (spot | scheduled). instance-state-code - The state of the instance, as a 16-bit unsigned integer. The high byte is used for internal purposes and should be ignored. The low byte is set based on the state represented. The valid values are: 0 (pending), 16 (running), 32 (shutting-down), 48 (terminated), 64 (stopping), and 80 (stopped). instance-state-name - The state of the instance (pending | running | shutting-down | terminated | stopping | stopped). instance-type - The type of instance (for example, t2.micro). instance.group-id - The ID of the security group for the instance. instance.group-name - The name of the security group for the instance. ip-address - The public IPv4 address of the instance. ipv6-address - The IPv6 address of the instance. kernel-id - The kernel ID. key-name - The name of the key pair used when the instance was launched. launch-index - When launching multiple instances, this is the index for the instance in the launch group (for example, 0, 1, 2, and so on). launch-time - The time when the instance was launched, in the ISO 8601 format in the UTC time zone (YYYY-MM-DDThh:mm:ss.sssZ), for example, 2021-09-29T11:04:43.305Z. You can use a wildcard (*), for example, 2021-09-29T*, which matches an entire day. maintenance-options.auto-recovery - The current automatic recovery behavior of the instance (disabled | default). metadata-options.http-endpoint - The status of access to the HTTP metadata endpoint on your instance (enabled | disabled) metadata-options.http-protocol-ipv4 - Indicates whether the IPv4 endpoint is enabled (disabled | enabled). metadata-options.http-protocol-ipv6 - Indicates whether the IPv6 endpoint is enabled (disabled | enabled). metadata-options.http-put-response-hop-limit - The HTTP metadata request put response hop limit (integer, possible values 1 to 64) metadata-options.http-tokens - The metadata request authorization state (optional | required) metadata-options.instance-metadata-tags - The status of access to instance tags from the instance metadata (enabled | disabled) metadata-options.state - The state of the metadata option changes (pending | applied). monitoring-state - Indicates whether detailed monitoring is enabled (disabled | enabled). network-interface.addresses.association.allocation-id - The allocation ID. network-interface.addresses.association.association-id - The association ID. network-interface.addresses.association.carrier-ip - The carrier IP address. network-interface.addresses.association.customer-owned-ip - The customer-owned IP address. network-interface.addresses.association.ip-owner-id - The owner ID of the private IPv4 address associated with the network interface. network-interface.addresses.association.public-dns-name - The public DNS name. network-interface.addresses.association.public-ip - The ID of the association of an Elastic IP address (IPv4) with a network interface. network-interface.addresses.primary - Specifies whether the IPv4 address of the network interface is the primary private IPv4 address. network-interface.addresses.private-dns-name - The private DNS name. network-interface.addresses.private-ip-address - The private IPv4 address associated with the network interface. network-interface.association.allocation-id - The allocation ID returned when you allocated the Elastic IP address (IPv4) for your network interface. network-interface.association.association-id - The association ID returned when the network interface was associated with an IPv4 address. network-interface.association.carrier-ip - The customer-owned IP address. network-interface.association.customer-owned-ip - The customer-owned IP address. network-interface.association.ip-owner-id - The owner of the Elastic IP address (IPv4) associated with the network interface. network-interface.association.public-dns-name - The public DNS name. network-interface.association.public-ip - The address of the Elastic IP address (IPv4) bound to the network interface. network-interface.attachment.attach-time - The time that the network interface was attached to an instance. network-interface.attachment.attachment-id - The ID of the interface attachment. network-interface.attachment.delete-on-termination - Specifies whether the attachment is deleted when an instance is terminated. network-interface.attachment.device-index - The device index to which the network interface is attached. network-interface.attachment.instance-id - The ID of the instance to which the network interface is attached. network-interface.attachment.instance-owner-id - The owner ID of the instance to which the network interface is attached. network-interface.attachment.network-card-index - The index of the network card. network-interface.attachment.status - The status of the attachment (attaching | attached | detaching | detached). network-interface.availability-zone - The Availability Zone for the network interface. network-interface.deny-all-igw-traffic - A Boolean that indicates whether a network interface with an IPv6 address is unreachable from the public internet. network-interface.description - The description of the network interface. network-interface.group-id - The ID of a security group associated with the network interface. network-interface.group-name - The name of a security group associated with the network interface. network-interface.ipv4-prefixes.ipv4-prefix - The IPv4 prefixes that are assigned to the network interface. network-interface.ipv6-address - The IPv6 address associated with the network interface. network-interface.ipv6-addresses.ipv6-address - The IPv6 address associated with the network interface. network-interface.ipv6-addresses.is-primary-ipv6 - A Boolean that indicates whether this is the primary IPv6 address. network-interface.ipv6-native - A Boolean that indicates whether this is an IPv6 only network interface. network-interface.ipv6-prefixes.ipv6-prefix - The IPv6 prefix assigned to the network interface. network-interface.mac-address - The MAC address of the network interface. network-interface.network-interface-id - The ID of the network interface. network-interface.outpost-arn - The ARN of the Outpost. network-interface.owner-id - The ID of the owner of the network interface. network-interface.private-dns-name - The private DNS name of the network interface. network-interface.private-ip-address - The private IPv4 address. network-interface.public-dns-name - The public DNS name. network-interface.requester-id - The requester ID for the network interface. network-interface.requester-managed - Indicates whether the network interface is being managed by Amazon Web Services. network-interface.status - The status of the network interface (available) | in-use). network-interface.source-dest-check - Whether the network interface performs source/destination checking. A value of true means that checking is enabled, and false means that checking is disabled. The value must be false for the network interface to perform network address translation (NAT) in your VPC. network-interface.subnet-id - The ID of the subnet for the network interface. network-interface.tag-key - The key of a tag assigned to the network interface. network-interface.tag-value - The value of a tag assigned to the network interface. network-interface.vpc-id - The ID of the VPC for the network interface. outpost-arn - The Amazon Resource Name (ARN) of the Outpost. owner-id - The Amazon Web Services account ID of the instance owner. placement-group-name - The name of the placement group for the instance. placement-partition-number - The partition in which the instance is located. platform - The platform. To list only Windows instances, use windows. platform-details - The platform (Linux/UNIX | Red Hat BYOL Linux | Red Hat Enterprise Linux | Red Hat Enterprise Linux with HA | Red Hat Enterprise Linux with SQL Server Standard and HA | Red Hat Enterprise Linux with SQL Server Enterprise and HA | Red Hat Enterprise Linux with SQL Server Standard | Red Hat Enterprise Linux with SQL Server Web | Red Hat Enterprise Linux with SQL Server Enterprise | SQL Server Enterprise | SQL Server Standard | SQL Server Web | SUSE Linux | Ubuntu Pro | Windows | Windows BYOL | Windows with SQL Server Enterprise | Windows with SQL Server Standard | Windows with SQL Server Web). private-dns-name - The private IPv4 DNS name of the instance. private-dns-name-options.enable-resource-name-dns-a-record - A Boolean that indicates whether to respond to DNS queries for instance hostnames with DNS A records. private-dns-name-options.enable-resource-name-dns-aaaa-record - A Boolean that indicates whether to respond to DNS queries for instance hostnames with DNS AAAA records. private-dns-name-options.hostname-type - The type of hostname (ip-name | resource-name). private-ip-address - The private IPv4 address of the instance. product-code - The product code associated with the AMI used to launch the instance. product-code.type - The type of product code (devpay | marketplace). ramdisk-id - The RAM disk ID. reason - The reason for the current state of the instance (for example, shows "User Initiated [date]" when you stop or terminate the instance). Similar to the state-reason-code filter. requester-id - The ID of the entity that launched the instance on your behalf (for example, Amazon Web Services Management Console, Auto Scaling, and so on). reservation-id - The ID of the instance's reservation. A reservation ID is created any time you launch an instance. A reservation ID has a one-to-one relationship with an instance launch request, but can be associated with more than one instance if you launch multiple instances using the same launch request. For example, if you launch one instance, you get one reservation ID. If you launch ten instances using the same launch request, you also get one reservation ID. root-device-name - The device name of the root device volume (for example, /dev/sda1). root-device-type - The type of the root device volume (ebs | instance-store). source-dest-check - Indicates whether the instance performs source/destination checking. A value of true means that checking is enabled, and false means that checking is disabled. The value must be false for the instance to perform network address translation (NAT) in your VPC. spot-instance-request-id - The ID of the Spot Instance request. state-reason-code - The reason code for the state change. state-reason-message - A message that describes the state change. subnet-id - The ID of the subnet for the instance. tag:&lt;key&gt; - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value. tag-key - The key of a tag assigned to the resource. Use this filter to find all resources that have a tag with a specific key, regardless of the tag value. tenancy - The tenancy of an instance (dedicated | default | host). tpm-support - Indicates if the instance is configured for NitroTPM support (v2.0). usage-operation - The usage operation value for the instance (RunInstances | RunInstances:00g0 | RunInstances:0010 | RunInstances:1010 | RunInstances:1014 | RunInstances:1110 | RunInstances:0014 | RunInstances:0210 | RunInstances:0110 | RunInstances:0100 | RunInstances:0004 | RunInstances:0200 | RunInstances:000g | RunInstances:0g00 | RunInstances:0002 | RunInstances:0800 | RunInstances:0102 | RunInstances:0006 | RunInstances:0202). usage-operation-update-time - The time that the usage operation was last updated, for example, 2022-09-15T17:15:20.000Z. virtualization-type - The virtualization type of the instance (paravirtual | hvm). vpc-id - The ID of the VPC that the instance is running in.
14863
+ * The filters. affinity - The affinity setting for an instance running on a Dedicated Host (default | host). architecture - The instance architecture (i386 | x86_64 | arm64). availability-zone - The Availability Zone of the instance. block-device-mapping.attach-time - The attach time for an EBS volume mapped to the instance, for example, 2022-09-15T17:15:20.000Z. block-device-mapping.delete-on-termination - A Boolean that indicates whether the EBS volume is deleted on instance termination. block-device-mapping.device-name - The device name specified in the block device mapping (for example, /dev/sdh or xvdh). block-device-mapping.status - The status for the EBS volume (attaching | attached | detaching | detached). block-device-mapping.volume-id - The volume ID of the EBS volume. boot-mode - The boot mode that was specified by the AMI (legacy-bios | uefi | uefi-preferred). capacity-reservation-id - The ID of the Capacity Reservation into which the instance was launched. capacity-reservation-specification.capacity-reservation-preference - The instance's Capacity Reservation preference (open | none). capacity-reservation-specification.capacity-reservation-target.capacity-reservation-id - The ID of the targeted Capacity Reservation. capacity-reservation-specification.capacity-reservation-target.capacity-reservation-resource-group-arn - The ARN of the targeted Capacity Reservation group. client-token - The idempotency token you provided when you launched the instance. current-instance-boot-mode - The boot mode that is used to launch the instance at launch or start (legacy-bios | uefi). dns-name - The public DNS name of the instance. ebs-optimized - A Boolean that indicates whether the instance is optimized for Amazon EBS I/O. ena-support - A Boolean that indicates whether the instance is enabled for enhanced networking with ENA. enclave-options.enabled - A Boolean that indicates whether the instance is enabled for Amazon Web Services Nitro Enclaves. hibernation-options.configured - A Boolean that indicates whether the instance is enabled for hibernation. A value of true means that the instance is enabled for hibernation. host-id - The ID of the Dedicated Host on which the instance is running, if applicable. hypervisor - The hypervisor type of the instance (ovm | xen). The value xen is used for both Xen and Nitro hypervisors. iam-instance-profile.arn - The instance profile associated with the instance. Specified as an ARN. iam-instance-profile.id - The instance profile associated with the instance. Specified as an ID. iam-instance-profile.name - The instance profile associated with the instance. Specified as an name. image-id - The ID of the image used to launch the instance. instance-id - The ID of the instance. instance-lifecycle - Indicates whether this is a Spot Instance, a Scheduled Instance, or a Capacity Block (spot | scheduled | capacity-block). instance-state-code - The state of the instance, as a 16-bit unsigned integer. The high byte is used for internal purposes and should be ignored. The low byte is set based on the state represented. The valid values are: 0 (pending), 16 (running), 32 (shutting-down), 48 (terminated), 64 (stopping), and 80 (stopped). instance-state-name - The state of the instance (pending | running | shutting-down | terminated | stopping | stopped). instance-type - The type of instance (for example, t2.micro). instance.group-id - The ID of the security group for the instance. instance.group-name - The name of the security group for the instance. ip-address - The public IPv4 address of the instance. ipv6-address - The IPv6 address of the instance. kernel-id - The kernel ID. key-name - The name of the key pair used when the instance was launched. launch-index - When launching multiple instances, this is the index for the instance in the launch group (for example, 0, 1, 2, and so on). launch-time - The time when the instance was launched, in the ISO 8601 format in the UTC time zone (YYYY-MM-DDThh:mm:ss.sssZ), for example, 2021-09-29T11:04:43.305Z. You can use a wildcard (*), for example, 2021-09-29T*, which matches an entire day. maintenance-options.auto-recovery - The current automatic recovery behavior of the instance (disabled | default). metadata-options.http-endpoint - The status of access to the HTTP metadata endpoint on your instance (enabled | disabled) metadata-options.http-protocol-ipv4 - Indicates whether the IPv4 endpoint is enabled (disabled | enabled). metadata-options.http-protocol-ipv6 - Indicates whether the IPv6 endpoint is enabled (disabled | enabled). metadata-options.http-put-response-hop-limit - The HTTP metadata request put response hop limit (integer, possible values 1 to 64) metadata-options.http-tokens - The metadata request authorization state (optional | required) metadata-options.instance-metadata-tags - The status of access to instance tags from the instance metadata (enabled | disabled) metadata-options.state - The state of the metadata option changes (pending | applied). monitoring-state - Indicates whether detailed monitoring is enabled (disabled | enabled). network-interface.addresses.association.allocation-id - The allocation ID. network-interface.addresses.association.association-id - The association ID. network-interface.addresses.association.carrier-ip - The carrier IP address. network-interface.addresses.association.customer-owned-ip - The customer-owned IP address. network-interface.addresses.association.ip-owner-id - The owner ID of the private IPv4 address associated with the network interface. network-interface.addresses.association.public-dns-name - The public DNS name. network-interface.addresses.association.public-ip - The ID of the association of an Elastic IP address (IPv4) with a network interface. network-interface.addresses.primary - Specifies whether the IPv4 address of the network interface is the primary private IPv4 address. network-interface.addresses.private-dns-name - The private DNS name. network-interface.addresses.private-ip-address - The private IPv4 address associated with the network interface. network-interface.association.allocation-id - The allocation ID returned when you allocated the Elastic IP address (IPv4) for your network interface. network-interface.association.association-id - The association ID returned when the network interface was associated with an IPv4 address. network-interface.association.carrier-ip - The customer-owned IP address. network-interface.association.customer-owned-ip - The customer-owned IP address. network-interface.association.ip-owner-id - The owner of the Elastic IP address (IPv4) associated with the network interface. network-interface.association.public-dns-name - The public DNS name. network-interface.association.public-ip - The address of the Elastic IP address (IPv4) bound to the network interface. network-interface.attachment.attach-time - The time that the network interface was attached to an instance. network-interface.attachment.attachment-id - The ID of the interface attachment. network-interface.attachment.delete-on-termination - Specifies whether the attachment is deleted when an instance is terminated. network-interface.attachment.device-index - The device index to which the network interface is attached. network-interface.attachment.instance-id - The ID of the instance to which the network interface is attached. network-interface.attachment.instance-owner-id - The owner ID of the instance to which the network interface is attached. network-interface.attachment.network-card-index - The index of the network card. network-interface.attachment.status - The status of the attachment (attaching | attached | detaching | detached). network-interface.availability-zone - The Availability Zone for the network interface. network-interface.deny-all-igw-traffic - A Boolean that indicates whether a network interface with an IPv6 address is unreachable from the public internet. network-interface.description - The description of the network interface. network-interface.group-id - The ID of a security group associated with the network interface. network-interface.group-name - The name of a security group associated with the network interface. network-interface.ipv4-prefixes.ipv4-prefix - The IPv4 prefixes that are assigned to the network interface. network-interface.ipv6-address - The IPv6 address associated with the network interface. network-interface.ipv6-addresses.ipv6-address - The IPv6 address associated with the network interface. network-interface.ipv6-addresses.is-primary-ipv6 - A Boolean that indicates whether this is the primary IPv6 address. network-interface.ipv6-native - A Boolean that indicates whether this is an IPv6 only network interface. network-interface.ipv6-prefixes.ipv6-prefix - The IPv6 prefix assigned to the network interface. network-interface.mac-address - The MAC address of the network interface. network-interface.network-interface-id - The ID of the network interface. network-interface.outpost-arn - The ARN of the Outpost. network-interface.owner-id - The ID of the owner of the network interface. network-interface.private-dns-name - The private DNS name of the network interface. network-interface.private-ip-address - The private IPv4 address. network-interface.public-dns-name - The public DNS name. network-interface.requester-id - The requester ID for the network interface. network-interface.requester-managed - Indicates whether the network interface is being managed by Amazon Web Services. network-interface.status - The status of the network interface (available) | in-use). network-interface.source-dest-check - Whether the network interface performs source/destination checking. A value of true means that checking is enabled, and false means that checking is disabled. The value must be false for the network interface to perform network address translation (NAT) in your VPC. network-interface.subnet-id - The ID of the subnet for the network interface. network-interface.tag-key - The key of a tag assigned to the network interface. network-interface.tag-value - The value of a tag assigned to the network interface. network-interface.vpc-id - The ID of the VPC for the network interface. outpost-arn - The Amazon Resource Name (ARN) of the Outpost. owner-id - The Amazon Web Services account ID of the instance owner. placement-group-name - The name of the placement group for the instance. placement-partition-number - The partition in which the instance is located. platform - The platform. To list only Windows instances, use windows. platform-details - The platform (Linux/UNIX | Red Hat BYOL Linux | Red Hat Enterprise Linux | Red Hat Enterprise Linux with HA | Red Hat Enterprise Linux with SQL Server Standard and HA | Red Hat Enterprise Linux with SQL Server Enterprise and HA | Red Hat Enterprise Linux with SQL Server Standard | Red Hat Enterprise Linux with SQL Server Web | Red Hat Enterprise Linux with SQL Server Enterprise | SQL Server Enterprise | SQL Server Standard | SQL Server Web | SUSE Linux | Ubuntu Pro | Windows | Windows BYOL | Windows with SQL Server Enterprise | Windows with SQL Server Standard | Windows with SQL Server Web). private-dns-name - The private IPv4 DNS name of the instance. private-dns-name-options.enable-resource-name-dns-a-record - A Boolean that indicates whether to respond to DNS queries for instance hostnames with DNS A records. private-dns-name-options.enable-resource-name-dns-aaaa-record - A Boolean that indicates whether to respond to DNS queries for instance hostnames with DNS AAAA records. private-dns-name-options.hostname-type - The type of hostname (ip-name | resource-name). private-ip-address - The private IPv4 address of the instance. product-code - The product code associated with the AMI used to launch the instance. product-code.type - The type of product code (devpay | marketplace). ramdisk-id - The RAM disk ID. reason - The reason for the current state of the instance (for example, shows "User Initiated [date]" when you stop or terminate the instance). Similar to the state-reason-code filter. requester-id - The ID of the entity that launched the instance on your behalf (for example, Amazon Web Services Management Console, Auto Scaling, and so on). reservation-id - The ID of the instance's reservation. A reservation ID is created any time you launch an instance. A reservation ID has a one-to-one relationship with an instance launch request, but can be associated with more than one instance if you launch multiple instances using the same launch request. For example, if you launch one instance, you get one reservation ID. If you launch ten instances using the same launch request, you also get one reservation ID. root-device-name - The device name of the root device volume (for example, /dev/sda1). root-device-type - The type of the root device volume (ebs | instance-store). source-dest-check - Indicates whether the instance performs source/destination checking. A value of true means that checking is enabled, and false means that checking is disabled. The value must be false for the instance to perform network address translation (NAT) in your VPC. spot-instance-request-id - The ID of the Spot Instance request. state-reason-code - The reason code for the state change. state-reason-message - A message that describes the state change. subnet-id - The ID of the subnet for the instance. tag:&lt;key&gt; - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value. tag-key - The key of a tag assigned to the resource. Use this filter to find all resources that have a tag with a specific key, regardless of the tag value. tenancy - The tenancy of an instance (dedicated | default | host). tpm-support - Indicates if the instance is configured for NitroTPM support (v2.0). usage-operation - The usage operation value for the instance (RunInstances | RunInstances:00g0 | RunInstances:0010 | RunInstances:1010 | RunInstances:1014 | RunInstances:1110 | RunInstances:0014 | RunInstances:0210 | RunInstances:0110 | RunInstances:0100 | RunInstances:0004 | RunInstances:0200 | RunInstances:000g | RunInstances:0g00 | RunInstances:0002 | RunInstances:0800 | RunInstances:0102 | RunInstances:0006 | RunInstances:0202). usage-operation-update-time - The time that the usage operation was last updated, for example, 2022-09-15T17:15:20.000Z. virtualization-type - The virtualization type of the instance (paravirtual | hvm). vpc-id - The ID of the VPC that the instance is running in.
14840
14864
  */
14841
14865
  Filters?: FilterList;
14842
14866
  /**
@@ -18321,6 +18345,18 @@ declare namespace EC2 {
18321
18345
  */
18322
18346
  SerialConsoleAccessEnabled?: Boolean;
18323
18347
  }
18348
+ export interface DisableSnapshotBlockPublicAccessRequest {
18349
+ /**
18350
+ * Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
18351
+ */
18352
+ DryRun?: Boolean;
18353
+ }
18354
+ export interface DisableSnapshotBlockPublicAccessResult {
18355
+ /**
18356
+ * Returns unblocked if the request succeeds.
18357
+ */
18358
+ State?: SnapshotBlockPublicAccessState;
18359
+ }
18324
18360
  export interface DisableTransitGatewayRouteTablePropagationRequest {
18325
18361
  /**
18326
18362
  * The ID of the propagation route table.
@@ -19099,10 +19135,26 @@ declare namespace EC2 {
19099
19135
  */
19100
19136
  EnaSrdUdpSpecification?: EnaSrdUdpSpecification;
19101
19137
  }
19138
+ export interface EnaSrdSpecificationRequest {
19139
+ /**
19140
+ * Specifies whether ENA Express is enabled for the network interface when you launch an instance from your launch template.
19141
+ */
19142
+ EnaSrdEnabled?: Boolean;
19143
+ /**
19144
+ * Contains ENA Express settings for UDP network traffic in your launch template.
19145
+ */
19146
+ EnaSrdUdpSpecification?: EnaSrdUdpSpecificationRequest;
19147
+ }
19102
19148
  export type EnaSrdSupported = boolean;
19103
19149
  export interface EnaSrdUdpSpecification {
19104
19150
  /**
19105
- * Indicates whether UDP traffic uses ENA Express. To specify this setting, you must first enable ENA Express.
19151
+ * Indicates whether UDP traffic to and from the instance uses ENA Express. To specify this setting, you must first enable ENA Express.
19152
+ */
19153
+ EnaSrdUdpEnabled?: Boolean;
19154
+ }
19155
+ export interface EnaSrdUdpSpecificationRequest {
19156
+ /**
19157
+ * Indicates whether UDP traffic uses ENA Express for your instance. To ensure that UDP traffic can use ENA Express when you launch an instance, you must also set EnaSrdEnabled in the EnaSrdSpecificationRequest to true in your launch template.
19106
19158
  */
19107
19159
  EnaSrdUdpEnabled?: Boolean;
19108
19160
  }
@@ -19426,6 +19478,22 @@ declare namespace EC2 {
19426
19478
  */
19427
19479
  SerialConsoleAccessEnabled?: Boolean;
19428
19480
  }
19481
+ export interface EnableSnapshotBlockPublicAccessRequest {
19482
+ /**
19483
+ * The mode in which to enable block public access for snapshots for the Region. Specify one of the following values: block-all-sharing - Prevents all public sharing of snapshots in the Region. Users in the account will no longer be able to request new public sharing. Additionally, snapshots that are already publicly shared are treated as private and they are no longer publicly available. If you enable block public access for snapshots in block-all-sharing mode, it does not change the permissions for snapshots that are already publicly shared. Instead, it prevents these snapshots from be publicly visible and publicly accessible. Therefore, the attributes for these snapshots still indicate that they are publicly shared, even though they are not publicly available. block-new-sharing - Prevents only new public sharing of snapshots in the Region. Users in the account will no longer be able to request new public sharing. However, snapshots that are already publicly shared, remain publicly available.
19484
+ */
19485
+ State: SnapshotBlockPublicAccessState;
19486
+ /**
19487
+ * Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
19488
+ */
19489
+ DryRun?: Boolean;
19490
+ }
19491
+ export interface EnableSnapshotBlockPublicAccessResult {
19492
+ /**
19493
+ * The state of block public access for snapshots for the account and Region. Returns either block-all-sharing or block-new-sharing if the request succeeds.
19494
+ */
19495
+ State?: SnapshotBlockPublicAccessState;
19496
+ }
19429
19497
  export interface EnableTransitGatewayRouteTablePropagationRequest {
19430
19498
  /**
19431
19499
  * The ID of the propagation route table.
@@ -21616,6 +21684,18 @@ declare namespace EC2 {
21616
21684
  */
21617
21685
  SerialConsoleAccessEnabled?: Boolean;
21618
21686
  }
21687
+ export interface GetSnapshotBlockPublicAccessStateRequest {
21688
+ /**
21689
+ * Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
21690
+ */
21691
+ DryRun?: Boolean;
21692
+ }
21693
+ export interface GetSnapshotBlockPublicAccessStateResult {
21694
+ /**
21695
+ * The current state of block public access for snapshots. Possible values include: block-all-sharing - All public sharing of snapshots is blocked. Users in the account can't request new public sharing. Additionally, snapshots that were already publicly shared are treated as private and are not publicly available. block-new-sharing - Only new public sharing of snapshots is blocked. Users in the account can't request new public sharing. However, snapshots that were already publicly shared, remain publicly available. unblocked - Public sharing is not blocked. Users can publicly share snapshots.
21696
+ */
21697
+ State?: SnapshotBlockPublicAccessState;
21698
+ }
21619
21699
  export interface GetSpotPlacementScoresRequest {
21620
21700
  /**
21621
21701
  * The instance types. We recommend that you specify at least three instance types. If you specify one or two instance types, or specify variations of a single instance type (for example, an m3.xlarge with and without instance storage), the returned placement score will always be low. If you specify InstanceTypes, you can't specify InstanceRequirementsWithMetadata.
@@ -23487,6 +23567,22 @@ declare namespace EC2 {
23487
23567
  */
23488
23568
  CurrentInstanceBootMode?: InstanceBootModeValues;
23489
23569
  }
23570
+ export interface InstanceAttachmentEnaSrdSpecification {
23571
+ /**
23572
+ * Indicates whether ENA Express is enabled for the network interface.
23573
+ */
23574
+ EnaSrdEnabled?: Boolean;
23575
+ /**
23576
+ * Configures ENA Express for UDP network traffic.
23577
+ */
23578
+ EnaSrdUdpSpecification?: InstanceAttachmentEnaSrdUdpSpecification;
23579
+ }
23580
+ export interface InstanceAttachmentEnaSrdUdpSpecification {
23581
+ /**
23582
+ * Indicates whether UDP traffic to and from the instance uses ENA Express. To specify this setting, you must first enable ENA Express.
23583
+ */
23584
+ EnaSrdUdpEnabled?: Boolean;
23585
+ }
23490
23586
  export interface InstanceAttribute {
23491
23587
  /**
23492
23588
  * The security groups associated with the instance.
@@ -24039,6 +24135,10 @@ declare namespace EC2 {
24039
24135
  * The index of the network card.
24040
24136
  */
24041
24137
  NetworkCardIndex?: Integer;
24138
+ /**
24139
+ * Contains the ENA Express settings for the network interface that's attached to the instance.
24140
+ */
24141
+ EnaSrdSpecification?: InstanceAttachmentEnaSrdSpecification;
24042
24142
  }
24043
24143
  export type InstanceNetworkInterfaceList = InstanceNetworkInterface[];
24044
24144
  export interface InstanceNetworkInterfaceSpecification {
@@ -24122,6 +24222,10 @@ declare namespace EC2 {
24122
24222
  * The primary IPv6 address of the network interface. When you enable an IPv6 GUA address to be a primary IPv6, the first IPv6 GUA will be made the primary IPv6 address until the instance is terminated or the network interface is detached. For more information about primary IPv6 addresses, see RunInstances.
24123
24223
  */
24124
24224
  PrimaryIpv6?: Boolean;
24225
+ /**
24226
+ * Specifies the ENA Express settings for the network interface that's attached to the instance.
24227
+ */
24228
+ EnaSrdSpecification?: EnaSrdSpecificationRequest;
24125
24229
  }
24126
24230
  export type InstanceNetworkInterfaceSpecificationList = InstanceNetworkInterfaceSpecification[];
24127
24231
  export interface InstancePrivateIpAddress {
@@ -25821,6 +25925,22 @@ declare namespace EC2 {
25821
25925
  Count?: Integer;
25822
25926
  }
25823
25927
  export type LaunchTemplateElasticInferenceAcceleratorResponseList = LaunchTemplateElasticInferenceAcceleratorResponse[];
25928
+ export interface LaunchTemplateEnaSrdSpecification {
25929
+ /**
25930
+ * Indicates whether ENA Express is enabled for the network interface.
25931
+ */
25932
+ EnaSrdEnabled?: Boolean;
25933
+ /**
25934
+ * Configures ENA Express for UDP network traffic.
25935
+ */
25936
+ EnaSrdUdpSpecification?: LaunchTemplateEnaSrdUdpSpecification;
25937
+ }
25938
+ export interface LaunchTemplateEnaSrdUdpSpecification {
25939
+ /**
25940
+ * Indicates whether UDP traffic to and from the instance uses ENA Express. To specify this setting, you must first enable ENA Express.
25941
+ */
25942
+ EnaSrdUdpEnabled?: Boolean;
25943
+ }
25824
25944
  export interface LaunchTemplateEnclaveOptions {
25825
25945
  /**
25826
25946
  * If this parameter is set to true, the instance is enabled for Amazon Web Services Nitro Enclaves; otherwise, it is not enabled for Amazon Web Services Nitro Enclaves.
@@ -26034,6 +26154,10 @@ declare namespace EC2 {
26034
26154
  * The primary IPv6 address of the network interface. When you enable an IPv6 GUA address to be a primary IPv6, the first IPv6 GUA will be made the primary IPv6 address until the instance is terminated or the network interface is detached. For more information about primary IPv6 addresses, see RunInstances.
26035
26155
  */
26036
26156
  PrimaryIpv6?: Boolean;
26157
+ /**
26158
+ * Contains the ENA Express settings for instances launched from your launch template.
26159
+ */
26160
+ EnaSrdSpecification?: LaunchTemplateEnaSrdSpecification;
26037
26161
  }
26038
26162
  export type LaunchTemplateInstanceNetworkInterfaceSpecificationList = LaunchTemplateInstanceNetworkInterfaceSpecification[];
26039
26163
  export interface LaunchTemplateInstanceNetworkInterfaceSpecificationRequest {
@@ -26117,6 +26241,10 @@ declare namespace EC2 {
26117
26241
  * The primary IPv6 address of the network interface. When you enable an IPv6 GUA address to be a primary IPv6, the first IPv6 GUA will be made the primary IPv6 address until the instance is terminated or the network interface is detached. For more information about primary IPv6 addresses, see RunInstances.
26118
26242
  */
26119
26243
  PrimaryIpv6?: Boolean;
26244
+ /**
26245
+ * Configure ENA Express settings for your launch template.
26246
+ */
26247
+ EnaSrdSpecification?: EnaSrdSpecificationRequest;
26120
26248
  }
26121
26249
  export type LaunchTemplateInstanceNetworkInterfaceSpecificationRequestList = LaunchTemplateInstanceNetworkInterfaceSpecificationRequest[];
26122
26250
  export interface LaunchTemplateLicenseConfiguration {
@@ -26342,7 +26470,7 @@ declare namespace EC2 {
26342
26470
  export type LaunchTemplateTagSpecificationList = LaunchTemplateTagSpecification[];
26343
26471
  export interface LaunchTemplateTagSpecificationRequest {
26344
26472
  /**
26345
- * The type of resource to tag. Valid Values lists all resource types for Amazon EC2 that can be tagged. When you create a launch template, you can specify tags for the following resource types only: instance | volume | elastic-gpu | network-interface | spot-instances-request. If the instance does include the resource type that you specify, the instance launch fails. For example, not all instance types include an Elastic GPU. To tag a resource after it has been created, see CreateTags.
26473
+ * The type of resource to tag. Valid Values lists all resource types for Amazon EC2 that can be tagged. When you create a launch template, you can specify tags for the following resource types only: instance | volume | elastic-gpu | network-interface | spot-instances-request. If the instance does not include the resource type that you specify, the instance launch fails. For example, not all instance types include an Elastic GPU. To tag a resource after it has been created, see CreateTags.
26346
26474
  */
26347
26475
  ResourceType?: ResourceType;
26348
26476
  /**
@@ -31906,11 +32034,11 @@ declare namespace EC2 {
31906
32034
  */
31907
32035
  ElasticInferenceAccelerators?: LaunchTemplateElasticInferenceAcceleratorList;
31908
32036
  /**
31909
- * One or more security group IDs. You can create a security group using CreateSecurityGroup. You cannot specify both a security group ID and security name in the same request.
32037
+ * One or more security group IDs. You can create a security group using CreateSecurityGroup.
31910
32038
  */
31911
32039
  SecurityGroupIds?: SecurityGroupIdStringList;
31912
32040
  /**
31913
- * One or more security group names. For a nondefault VPC, you must use security group IDs instead. You cannot specify both a security group ID and security name in the same request.
32041
+ * One or more security group names. For a nondefault VPC, you must use security group IDs instead.
31914
32042
  */
31915
32043
  SecurityGroups?: SecurityGroupStringList;
31916
32044
  /**
@@ -34350,6 +34478,7 @@ declare namespace EC2 {
34350
34478
  SseType?: SSEType;
34351
34479
  }
34352
34480
  export type SnapshotAttributeName = "productCodes"|"createVolumePermission"|string;
34481
+ export type SnapshotBlockPublicAccessState = "block-all-sharing"|"block-new-sharing"|"unblocked"|string;
34353
34482
  export interface SnapshotDetail {
34354
34483
  /**
34355
34484
  * A description for the snapshot.