cdk-lambda-subminute 2.0.464 → 2.0.466
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.
- package/.jsii +3 -3
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/appintegrations-2020-07-29.min.json +121 -11
- package/node_modules/aws-sdk/apis/cognito-idp-2016-04-18.min.json +111 -105
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +1346 -1321
- package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +635 -307
- package/node_modules/aws-sdk/clients/appintegrations.d.ts +122 -13
- package/node_modules/aws-sdk/clients/cognitoidentityserviceprovider.d.ts +12 -1
- package/node_modules/aws-sdk/clients/ec2.d.ts +36 -1
- package/node_modules/aws-sdk/clients/glue.d.ts +474 -4
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +5 -5
- package/node_modules/aws-sdk/dist/aws-sdk.js +1460 -1429
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +90 -90
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +2 -2
@@ -12,11 +12,11 @@ declare class AppIntegrations extends Service {
|
|
12
12
|
constructor(options?: AppIntegrations.Types.ClientConfiguration)
|
13
13
|
config: Config & AppIntegrations.Types.ClientConfiguration;
|
14
14
|
/**
|
15
|
-
*
|
15
|
+
* Creates and persists an Application resource.
|
16
16
|
*/
|
17
17
|
createApplication(params: AppIntegrations.Types.CreateApplicationRequest, callback?: (err: AWSError, data: AppIntegrations.Types.CreateApplicationResponse) => void): Request<AppIntegrations.Types.CreateApplicationResponse, AWSError>;
|
18
18
|
/**
|
19
|
-
*
|
19
|
+
* Creates and persists an Application resource.
|
20
20
|
*/
|
21
21
|
createApplication(callback?: (err: AWSError, data: AppIntegrations.Types.CreateApplicationResponse) => void): Request<AppIntegrations.Types.CreateApplicationResponse, AWSError>;
|
22
22
|
/**
|
@@ -27,6 +27,14 @@ declare class AppIntegrations extends Service {
|
|
27
27
|
* Creates and persists a DataIntegration resource. You cannot create a DataIntegration association for a DataIntegration that has been previously associated. Use a different DataIntegration, or recreate the DataIntegration using the CreateDataIntegration API.
|
28
28
|
*/
|
29
29
|
createDataIntegration(callback?: (err: AWSError, data: AppIntegrations.Types.CreateDataIntegrationResponse) => void): Request<AppIntegrations.Types.CreateDataIntegrationResponse, AWSError>;
|
30
|
+
/**
|
31
|
+
* Creates and persists a DataIntegrationAssociation resource.
|
32
|
+
*/
|
33
|
+
createDataIntegrationAssociation(params: AppIntegrations.Types.CreateDataIntegrationAssociationRequest, callback?: (err: AWSError, data: AppIntegrations.Types.CreateDataIntegrationAssociationResponse) => void): Request<AppIntegrations.Types.CreateDataIntegrationAssociationResponse, AWSError>;
|
34
|
+
/**
|
35
|
+
* Creates and persists a DataIntegrationAssociation resource.
|
36
|
+
*/
|
37
|
+
createDataIntegrationAssociation(callback?: (err: AWSError, data: AppIntegrations.Types.CreateDataIntegrationAssociationResponse) => void): Request<AppIntegrations.Types.CreateDataIntegrationAssociationResponse, AWSError>;
|
30
38
|
/**
|
31
39
|
* Creates an EventIntegration, given a specified name, description, and a reference to an Amazon EventBridge bus in your account and a partner event source that pushes events to that bus. No objects are created in the your account, only metadata that is persisted on the EventIntegration control plane.
|
32
40
|
*/
|
@@ -60,11 +68,11 @@ declare class AppIntegrations extends Service {
|
|
60
68
|
*/
|
61
69
|
deleteEventIntegration(callback?: (err: AWSError, data: AppIntegrations.Types.DeleteEventIntegrationResponse) => void): Request<AppIntegrations.Types.DeleteEventIntegrationResponse, AWSError>;
|
62
70
|
/**
|
63
|
-
*
|
71
|
+
* Get an Application resource.
|
64
72
|
*/
|
65
73
|
getApplication(params: AppIntegrations.Types.GetApplicationRequest, callback?: (err: AWSError, data: AppIntegrations.Types.GetApplicationResponse) => void): Request<AppIntegrations.Types.GetApplicationResponse, AWSError>;
|
66
74
|
/**
|
67
|
-
*
|
75
|
+
* Get an Application resource.
|
68
76
|
*/
|
69
77
|
getApplication(callback?: (err: AWSError, data: AppIntegrations.Types.GetApplicationResponse) => void): Request<AppIntegrations.Types.GetApplicationResponse, AWSError>;
|
70
78
|
/**
|
@@ -92,11 +100,11 @@ declare class AppIntegrations extends Service {
|
|
92
100
|
*/
|
93
101
|
listApplicationAssociations(callback?: (err: AWSError, data: AppIntegrations.Types.ListApplicationAssociationsResponse) => void): Request<AppIntegrations.Types.ListApplicationAssociationsResponse, AWSError>;
|
94
102
|
/**
|
95
|
-
*
|
103
|
+
* Lists applications in the account.
|
96
104
|
*/
|
97
105
|
listApplications(params: AppIntegrations.Types.ListApplicationsRequest, callback?: (err: AWSError, data: AppIntegrations.Types.ListApplicationsResponse) => void): Request<AppIntegrations.Types.ListApplicationsResponse, AWSError>;
|
98
106
|
/**
|
99
|
-
*
|
107
|
+
* Lists applications in the account.
|
100
108
|
*/
|
101
109
|
listApplications(callback?: (err: AWSError, data: AppIntegrations.Types.ListApplicationsResponse) => void): Request<AppIntegrations.Types.ListApplicationsResponse, AWSError>;
|
102
110
|
/**
|
@@ -156,11 +164,11 @@ declare class AppIntegrations extends Service {
|
|
156
164
|
*/
|
157
165
|
untagResource(callback?: (err: AWSError, data: AppIntegrations.Types.UntagResourceResponse) => void): Request<AppIntegrations.Types.UntagResourceResponse, AWSError>;
|
158
166
|
/**
|
159
|
-
*
|
167
|
+
* Updates and persists an Application resource.
|
160
168
|
*/
|
161
169
|
updateApplication(params: AppIntegrations.Types.UpdateApplicationRequest, callback?: (err: AWSError, data: AppIntegrations.Types.UpdateApplicationResponse) => void): Request<AppIntegrations.Types.UpdateApplicationResponse, AWSError>;
|
162
170
|
/**
|
163
|
-
*
|
171
|
+
* Updates and persists an Application resource.
|
164
172
|
*/
|
165
173
|
updateApplication(callback?: (err: AWSError, data: AppIntegrations.Types.UpdateApplicationResponse) => void): Request<AppIntegrations.Types.UpdateApplicationResponse, AWSError>;
|
166
174
|
/**
|
@@ -171,6 +179,14 @@ declare class AppIntegrations extends Service {
|
|
171
179
|
* Updates the description of a DataIntegration. You cannot create a DataIntegration association for a DataIntegration that has been previously associated. Use a different DataIntegration, or recreate the DataIntegration using the CreateDataIntegration API.
|
172
180
|
*/
|
173
181
|
updateDataIntegration(callback?: (err: AWSError, data: AppIntegrations.Types.UpdateDataIntegrationResponse) => void): Request<AppIntegrations.Types.UpdateDataIntegrationResponse, AWSError>;
|
182
|
+
/**
|
183
|
+
* Updates and persists a DataIntegrationAssociation resource. Updating a DataIntegrationAssociation with ExecutionConfiguration will rerun the on-demand job.
|
184
|
+
*/
|
185
|
+
updateDataIntegrationAssociation(params: AppIntegrations.Types.UpdateDataIntegrationAssociationRequest, callback?: (err: AWSError, data: AppIntegrations.Types.UpdateDataIntegrationAssociationResponse) => void): Request<AppIntegrations.Types.UpdateDataIntegrationAssociationResponse, AWSError>;
|
186
|
+
/**
|
187
|
+
* Updates and persists a DataIntegrationAssociation resource. Updating a DataIntegrationAssociation with ExecutionConfiguration will rerun the on-demand job.
|
188
|
+
*/
|
189
|
+
updateDataIntegrationAssociation(callback?: (err: AWSError, data: AppIntegrations.Types.UpdateDataIntegrationAssociationResponse) => void): Request<AppIntegrations.Types.UpdateDataIntegrationAssociationResponse, AWSError>;
|
174
190
|
/**
|
175
191
|
* Updates the description of an event integration.
|
176
192
|
*/
|
@@ -285,6 +301,43 @@ declare namespace AppIntegrations {
|
|
285
301
|
*/
|
286
302
|
Id?: UUID;
|
287
303
|
}
|
304
|
+
export interface CreateDataIntegrationAssociationRequest {
|
305
|
+
/**
|
306
|
+
* A unique identifier for the DataIntegration.
|
307
|
+
*/
|
308
|
+
DataIntegrationIdentifier: Identifier;
|
309
|
+
/**
|
310
|
+
* The identifier for the client that is associated with the DataIntegration association.
|
311
|
+
*/
|
312
|
+
ClientId?: ClientId;
|
313
|
+
ObjectConfiguration?: ObjectConfiguration;
|
314
|
+
/**
|
315
|
+
* The URI of the data destination.
|
316
|
+
*/
|
317
|
+
DestinationURI?: DestinationURI;
|
318
|
+
/**
|
319
|
+
* The mapping of metadata to be extracted from the data.
|
320
|
+
*/
|
321
|
+
ClientAssociationMetadata?: ClientAssociationMetadata;
|
322
|
+
/**
|
323
|
+
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs.
|
324
|
+
*/
|
325
|
+
ClientToken?: IdempotencyToken;
|
326
|
+
/**
|
327
|
+
* The configuration for how the files should be pulled from the source.
|
328
|
+
*/
|
329
|
+
ExecutionConfiguration?: ExecutionConfiguration;
|
330
|
+
}
|
331
|
+
export interface CreateDataIntegrationAssociationResponse {
|
332
|
+
/**
|
333
|
+
* A unique identifier. for the DataIntegrationAssociation.
|
334
|
+
*/
|
335
|
+
DataIntegrationAssociationId?: UUID;
|
336
|
+
/**
|
337
|
+
* The Amazon Resource Name (ARN) for the DataIntegration.
|
338
|
+
*/
|
339
|
+
DataIntegrationArn?: Arn;
|
340
|
+
}
|
288
341
|
export interface CreateDataIntegrationRequest {
|
289
342
|
/**
|
290
343
|
* The name of the DataIntegration.
|
@@ -295,13 +348,13 @@ declare namespace AppIntegrations {
|
|
295
348
|
*/
|
296
349
|
Description?: Description;
|
297
350
|
/**
|
298
|
-
* The KMS key for the DataIntegration.
|
351
|
+
* The KMS key ARN for the DataIntegration.
|
299
352
|
*/
|
300
353
|
KmsKey: NonBlankString;
|
301
354
|
/**
|
302
355
|
* The URI of the data source.
|
303
356
|
*/
|
304
|
-
SourceURI
|
357
|
+
SourceURI?: SourceURI;
|
305
358
|
/**
|
306
359
|
* The name of the data and how often it should be pulled from the source.
|
307
360
|
*/
|
@@ -341,7 +394,7 @@ declare namespace AppIntegrations {
|
|
341
394
|
*/
|
342
395
|
Description?: Description;
|
343
396
|
/**
|
344
|
-
* The KMS key for the DataIntegration.
|
397
|
+
* The KMS key ARN for the DataIntegration.
|
345
398
|
*/
|
346
399
|
KmsKey?: NonBlankString;
|
347
400
|
/**
|
@@ -414,6 +467,15 @@ declare namespace AppIntegrations {
|
|
414
467
|
* The identifier for the client that is associated with the DataIntegration association.
|
415
468
|
*/
|
416
469
|
ClientId?: ClientId;
|
470
|
+
/**
|
471
|
+
* The URI of the data destination.
|
472
|
+
*/
|
473
|
+
DestinationURI?: DestinationURI;
|
474
|
+
/**
|
475
|
+
* The execution status of the last job.
|
476
|
+
*/
|
477
|
+
LastExecutionStatus?: LastExecutionStatus;
|
478
|
+
ExecutionConfiguration?: ExecutionConfiguration;
|
417
479
|
}
|
418
480
|
export type DataIntegrationAssociationsList = DataIntegrationAssociationSummary[];
|
419
481
|
export interface DataIntegrationSummary {
|
@@ -456,6 +518,7 @@ declare namespace AppIntegrations {
|
|
456
518
|
export interface DeleteEventIntegrationResponse {
|
457
519
|
}
|
458
520
|
export type Description = string;
|
521
|
+
export type DestinationURI = string;
|
459
522
|
export type EventBridgeBus = string;
|
460
523
|
export type EventBridgeRuleName = string;
|
461
524
|
export type EventDefinitionSchema = string;
|
@@ -520,6 +583,16 @@ declare namespace AppIntegrations {
|
|
520
583
|
export type EventIntegrationAssociationsList = EventIntegrationAssociation[];
|
521
584
|
export type EventIntegrationsList = EventIntegration[];
|
522
585
|
export type EventName = string;
|
586
|
+
export interface ExecutionConfiguration {
|
587
|
+
/**
|
588
|
+
* The mode for data import/export execution.
|
589
|
+
*/
|
590
|
+
ExecutionMode: ExecutionMode;
|
591
|
+
OnDemandConfiguration?: OnDemandConfiguration;
|
592
|
+
ScheduleConfiguration?: ScheduleConfiguration;
|
593
|
+
}
|
594
|
+
export type ExecutionMode = "ON_DEMAND"|"SCHEDULED"|string;
|
595
|
+
export type ExecutionStatus = "COMPLETED"|"IN_PROGRESS"|"FAILED"|string;
|
523
596
|
export interface ExternalUrlConfig {
|
524
597
|
/**
|
525
598
|
* The URL to access the application.
|
@@ -620,11 +693,11 @@ declare namespace AppIntegrations {
|
|
620
693
|
*/
|
621
694
|
Name?: Name;
|
622
695
|
/**
|
623
|
-
* The KMS key for the DataIntegration.
|
696
|
+
* The KMS key ARN for the DataIntegration.
|
624
697
|
*/
|
625
698
|
Description?: Description;
|
626
699
|
/**
|
627
|
-
* The KMS key for the DataIntegration.
|
700
|
+
* The KMS key ARN for the DataIntegration.
|
628
701
|
*/
|
629
702
|
KmsKey?: NonBlankString;
|
630
703
|
/**
|
@@ -682,6 +755,16 @@ declare namespace AppIntegrations {
|
|
682
755
|
}
|
683
756
|
export type IdempotencyToken = string;
|
684
757
|
export type Identifier = string;
|
758
|
+
export interface LastExecutionStatus {
|
759
|
+
/**
|
760
|
+
* The job status enum string.
|
761
|
+
*/
|
762
|
+
ExecutionStatus?: ExecutionStatus;
|
763
|
+
/**
|
764
|
+
* The status message of a job.
|
765
|
+
*/
|
766
|
+
StatusMessage?: NonBlankString;
|
767
|
+
}
|
685
768
|
export interface ListApplicationAssociationsRequest {
|
686
769
|
/**
|
687
770
|
* A unique identifier for the Application.
|
@@ -833,6 +916,16 @@ declare namespace AppIntegrations {
|
|
833
916
|
export type NonBlankString = string;
|
834
917
|
export type Object = string;
|
835
918
|
export type ObjectConfiguration = {[key: string]: FieldsMap};
|
919
|
+
export interface OnDemandConfiguration {
|
920
|
+
/**
|
921
|
+
* The start time for data pull from the source as an Unix/epoch string in milliseconds
|
922
|
+
*/
|
923
|
+
StartTime: NonBlankString;
|
924
|
+
/**
|
925
|
+
* The end time for data pull from the source as an Unix/epoch string in milliseconds
|
926
|
+
*/
|
927
|
+
EndTime?: NonBlankString;
|
928
|
+
}
|
836
929
|
export type Permission = string;
|
837
930
|
export type PermissionList = Permission[];
|
838
931
|
export interface Publication {
|
@@ -940,6 +1033,22 @@ declare namespace AppIntegrations {
|
|
940
1033
|
}
|
941
1034
|
export interface UpdateApplicationResponse {
|
942
1035
|
}
|
1036
|
+
export interface UpdateDataIntegrationAssociationRequest {
|
1037
|
+
/**
|
1038
|
+
* A unique identifier for the DataIntegration.
|
1039
|
+
*/
|
1040
|
+
DataIntegrationIdentifier: Identifier;
|
1041
|
+
/**
|
1042
|
+
* A unique identifier. of the DataIntegrationAssociation resource
|
1043
|
+
*/
|
1044
|
+
DataIntegrationAssociationIdentifier: Identifier;
|
1045
|
+
/**
|
1046
|
+
* The configuration for how the files should be pulled from the source.
|
1047
|
+
*/
|
1048
|
+
ExecutionConfiguration: ExecutionConfiguration;
|
1049
|
+
}
|
1050
|
+
export interface UpdateDataIntegrationAssociationResponse {
|
1051
|
+
}
|
943
1052
|
export interface UpdateDataIntegrationRequest {
|
944
1053
|
/**
|
945
1054
|
* A unique identifier for the DataIntegration.
|
@@ -1484,6 +1484,13 @@ declare namespace CognitoIdentityServiceProvider {
|
|
1484
1484
|
}
|
1485
1485
|
export interface AdminUserGlobalSignOutResponse {
|
1486
1486
|
}
|
1487
|
+
export interface AdvancedSecurityAdditionalFlowsType {
|
1488
|
+
/**
|
1489
|
+
* The operating mode of advanced security features in custom authentication with Custom authentication challenge Lambda triggers.
|
1490
|
+
*/
|
1491
|
+
CustomAuthMode?: AdvancedSecurityEnabledModeType;
|
1492
|
+
}
|
1493
|
+
export type AdvancedSecurityEnabledModeType = "AUDIT"|"ENFORCED"|string;
|
1487
1494
|
export type AdvancedSecurityModeType = "OFF"|"AUDIT"|"ENFORCED"|string;
|
1488
1495
|
export type AliasAttributeType = "phone_number"|"email"|"preferred_username"|string;
|
1489
1496
|
export type AliasAttributesListType = AliasAttributeType[];
|
@@ -4391,9 +4398,13 @@ declare namespace CognitoIdentityServiceProvider {
|
|
4391
4398
|
export type UserMFASettingListType = StringType[];
|
4392
4399
|
export interface UserPoolAddOnsType {
|
4393
4400
|
/**
|
4394
|
-
* The operating mode of advanced security features in your user pool.
|
4401
|
+
* The operating mode of advanced security features for standard authentication types in your user pool, including username-password and secure remote password (SRP) authentication.
|
4395
4402
|
*/
|
4396
4403
|
AdvancedSecurityMode: AdvancedSecurityModeType;
|
4404
|
+
/**
|
4405
|
+
* Advanced security configuration options for additional authentication types in your user pool, including custom authentication and refresh-token authentication.
|
4406
|
+
*/
|
4407
|
+
AdvancedSecurityAdditionalFlows?: AdvancedSecurityAdditionalFlowsType;
|
4397
4408
|
}
|
4398
4409
|
export interface UserPoolClientDescription {
|
4399
4410
|
/**
|
@@ -9789,6 +9789,10 @@ declare namespace EC2 {
|
|
9789
9789
|
* IPAM is offered in a Free Tier and an Advanced Tier. For more information about the features available in each tier and the costs associated with the tiers, see Amazon VPC pricing > IPAM tab.
|
9790
9790
|
*/
|
9791
9791
|
Tier?: IpamTier;
|
9792
|
+
/**
|
9793
|
+
* Enable this option to use your own GUA ranges as private IPv6 addresses. This option is disabled by default.
|
9794
|
+
*/
|
9795
|
+
EnablePrivateGua?: Boolean;
|
9792
9796
|
}
|
9793
9797
|
export interface CreateIpamResourceDiscoveryRequest {
|
9794
9798
|
/**
|
@@ -25748,6 +25752,7 @@ declare namespace EC2 {
|
|
25748
25752
|
}
|
25749
25753
|
export type IpRangeList = IpRange[];
|
25750
25754
|
export type IpRanges = String[];
|
25755
|
+
export type IpSource = "amazon"|"byoip"|"none"|string;
|
25751
25756
|
export interface Ipam {
|
25752
25757
|
/**
|
25753
25758
|
* The Amazon Web Services account ID of the owner of the IPAM.
|
@@ -25813,6 +25818,10 @@ declare namespace EC2 {
|
|
25813
25818
|
* IPAM is offered in a Free Tier and an Advanced Tier. For more information about the features available in each tier and the costs associated with the tiers, see Amazon VPC pricing > IPAM tab.
|
25814
25819
|
*/
|
25815
25820
|
Tier?: IpamTier;
|
25821
|
+
/**
|
25822
|
+
* Enable this option to use your own GUA ranges as private IPv6 addresses. This option is disabled by default.
|
25823
|
+
*/
|
25824
|
+
EnablePrivateGua?: Boolean;
|
25816
25825
|
}
|
25817
25826
|
export type IpamAddressHistoryMaxResults = number;
|
25818
25827
|
export interface IpamAddressHistoryRecord {
|
@@ -25998,6 +26007,10 @@ declare namespace EC2 {
|
|
25998
26007
|
* The resource CIDR.
|
25999
26008
|
*/
|
26000
26009
|
ResourceCidr?: String;
|
26010
|
+
/**
|
26011
|
+
* The source that allocated the IP address space. byoip or amazon indicates public IP address space allocated by Amazon or space that you have allocated with Bring your own IP (BYOIP). none indicates private space.
|
26012
|
+
*/
|
26013
|
+
IpSource?: IpamResourceCidrIpSource;
|
26001
26014
|
/**
|
26002
26015
|
* The resource type.
|
26003
26016
|
*/
|
@@ -26409,6 +26422,7 @@ declare namespace EC2 {
|
|
26409
26422
|
*/
|
26410
26423
|
AvailabilityZoneId?: String;
|
26411
26424
|
}
|
26425
|
+
export type IpamResourceCidrIpSource = "amazon"|"byoip"|"none"|string;
|
26412
26426
|
export type IpamResourceCidrSet = IpamResourceCidr[];
|
26413
26427
|
export interface IpamResourceDiscovery {
|
26414
26428
|
/**
|
@@ -26589,6 +26603,7 @@ declare namespace EC2 {
|
|
26589
26603
|
}
|
26590
26604
|
export type Ipv4PrefixesList = Ipv4PrefixSpecification[];
|
26591
26605
|
export type Ipv6Address = string;
|
26606
|
+
export type Ipv6AddressAttribute = "public"|"private"|string;
|
26592
26607
|
export type Ipv6AddressList = String[];
|
26593
26608
|
export interface Ipv6CidrAssociation {
|
26594
26609
|
/**
|
@@ -29101,6 +29116,10 @@ declare namespace EC2 {
|
|
29101
29116
|
* IPAM is offered in a Free Tier and an Advanced Tier. For more information about the features available in each tier and the costs associated with the tiers, see Amazon VPC pricing > IPAM tab.
|
29102
29117
|
*/
|
29103
29118
|
Tier?: IpamTier;
|
29119
|
+
/**
|
29120
|
+
* Enable this option to use your own GUA ranges as private IPv6 addresses. This option is disabled by default.
|
29121
|
+
*/
|
29122
|
+
EnablePrivateGua?: Boolean;
|
29104
29123
|
}
|
29105
29124
|
export interface ModifyIpamResourceCidrRequest {
|
29106
29125
|
/**
|
@@ -32443,7 +32462,7 @@ declare namespace EC2 {
|
|
32443
32462
|
*/
|
32444
32463
|
PoolId: Ipv4PoolEc2Id;
|
32445
32464
|
/**
|
32446
|
-
* The netmask length of the CIDR you would like to allocate to the public IPv4 pool.
|
32465
|
+
* The netmask length of the CIDR you would like to allocate to the public IPv4 pool. The least specific netmask length you can define is 24.
|
32447
32466
|
*/
|
32448
32467
|
NetmaskLength: Integer;
|
32449
32468
|
/**
|
@@ -37110,6 +37129,14 @@ declare namespace EC2 {
|
|
37110
37129
|
* The state of the CIDR block.
|
37111
37130
|
*/
|
37112
37131
|
Ipv6CidrBlockState?: SubnetCidrBlockState;
|
37132
|
+
/**
|
37133
|
+
* Public IPv6 addresses are those advertised on the internet from Amazon Web Services. Private IP addresses are not and cannot be advertised on the internet from Amazon Web Services.
|
37134
|
+
*/
|
37135
|
+
Ipv6AddressAttribute?: Ipv6AddressAttribute;
|
37136
|
+
/**
|
37137
|
+
* The source that allocated the IP address space. byoip or amazon indicates public IP address space allocated by Amazon or space that you have allocated with Bring your own IP (BYOIP). none indicates private space.
|
37138
|
+
*/
|
37139
|
+
IpSource?: IpSource;
|
37113
37140
|
}
|
37114
37141
|
export type SubnetIpv6CidrBlockAssociationSet = SubnetIpv6CidrBlockAssociation[];
|
37115
37142
|
export type SubnetList = Subnet[];
|
@@ -40122,6 +40149,14 @@ declare namespace EC2 {
|
|
40122
40149
|
* The ID of the IPv6 address pool from which the IPv6 CIDR block is allocated.
|
40123
40150
|
*/
|
40124
40151
|
Ipv6Pool?: String;
|
40152
|
+
/**
|
40153
|
+
* Public IPv6 addresses are those advertised on the internet from Amazon Web Services. Private IP addresses are not and cannot be advertised on the internet from Amazon Web Services.
|
40154
|
+
*/
|
40155
|
+
Ipv6AddressAttribute?: Ipv6AddressAttribute;
|
40156
|
+
/**
|
40157
|
+
* The source that allocated the IP address space. byoip or amazon indicates public IP address space allocated by Amazon or space that you have allocated with Bring your own IP (BYOIP). none indicates private space.
|
40158
|
+
*/
|
40159
|
+
IpSource?: IpSource;
|
40125
40160
|
}
|
40126
40161
|
export type VpcIpv6CidrBlockAssociationSet = VpcIpv6CidrBlockAssociation[];
|
40127
40162
|
export type VpcList = Vpc[];
|