cdk-docker-image-deployment 0.0.74 → 0.0.75

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/destination.js +1 -1
  3. package/lib/docker-image-deployment.js +1 -1
  4. package/lib/source.js +1 -1
  5. package/node_modules/aws-sdk/CHANGELOG.md +17 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/billingconductor-2021-07-30.min.json +20 -17
  8. package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +81 -49
  9. package/node_modules/aws-sdk/apis/eks-2017-11-01.min.json +59 -47
  10. package/node_modules/aws-sdk/apis/elasticache-2015-02-02.min.json +65 -50
  11. package/node_modules/aws-sdk/apis/iottwinmaker-2021-11-29.min.json +691 -409
  12. package/node_modules/aws-sdk/apis/iottwinmaker-2021-11-29.paginators.json +10 -0
  13. package/node_modules/aws-sdk/apis/personalize-events-2018-03-22.min.json +36 -8
  14. package/node_modules/aws-sdk/apis/proton-2020-07-20.min.json +13 -1
  15. package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +19 -5
  16. package/node_modules/aws-sdk/apis/ssm-2014-11-06.min.json +305 -227
  17. package/node_modules/aws-sdk/apis/ssm-2014-11-06.paginators.json +6 -0
  18. package/node_modules/aws-sdk/apis/ssm-incidents-2018-05-10.min.json +73 -21
  19. package/node_modules/aws-sdk/apis/xray-2016-04-12.min.json +139 -58
  20. package/node_modules/aws-sdk/apis/xray-2016-04-12.paginators.json +25 -0
  21. package/node_modules/aws-sdk/clients/batch.d.ts +6 -6
  22. package/node_modules/aws-sdk/clients/billingconductor.d.ts +14 -1
  23. package/node_modules/aws-sdk/clients/cloudformation.d.ts +1 -1
  24. package/node_modules/aws-sdk/clients/comprehendmedical.d.ts +6 -6
  25. package/node_modules/aws-sdk/clients/connect.d.ts +46 -4
  26. package/node_modules/aws-sdk/clients/eks.d.ts +26 -6
  27. package/node_modules/aws-sdk/clients/elasticache.d.ts +20 -1
  28. package/node_modules/aws-sdk/clients/iottwinmaker.d.ts +672 -386
  29. package/node_modules/aws-sdk/clients/personalizeevents.d.ts +13 -2
  30. package/node_modules/aws-sdk/clients/proton.d.ts +50 -23
  31. package/node_modules/aws-sdk/clients/rds.d.ts +32 -0
  32. package/node_modules/aws-sdk/clients/ssm.d.ts +140 -6
  33. package/node_modules/aws-sdk/clients/ssmincidents.d.ts +62 -0
  34. package/node_modules/aws-sdk/clients/xray.d.ts +101 -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 +679 -400
  38. package/node_modules/aws-sdk/dist/aws-sdk.min.js +75 -75
  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 +4 -4
@@ -389,6 +389,7 @@ declare namespace Billingconductor {
389
389
  */
390
390
  FailedDisassociatedResources?: DisassociateResourcesResponseList;
391
391
  }
392
+ export type BillingEntity = string;
392
393
  export type BillingGroupArn = string;
393
394
  export type BillingGroupArnList = BillingGroupArn[];
394
395
  export interface BillingGroupCostReportElement {
@@ -604,6 +605,10 @@ declare namespace Billingconductor {
604
605
  * A map that contains tag keys and tag values that are attached to a pricing rule.
605
606
  */
606
607
  Tags?: TagMap;
608
+ /**
609
+ * The seller of services provided by Amazon Web Services, their affiliates, or third-party providers selling services via Amazon Web Services Marketplace.
610
+ */
611
+ BillingEntity?: BillingEntity;
607
612
  }
608
613
  export interface CreatePricingRuleOutput {
609
614
  /**
@@ -1372,9 +1377,13 @@ declare namespace Billingconductor {
1372
1377
  * The most recent time when the pricing rule was modified.
1373
1378
  */
1374
1379
  LastModifiedTime?: Instant;
1380
+ /**
1381
+ * The seller of services provided by Amazon Web Services, their affiliates, or third-party providers selling services via Amazon Web Services Marketplace.
1382
+ */
1383
+ BillingEntity?: BillingEntity;
1375
1384
  }
1376
1385
  export type PricingRuleName = string;
1377
- export type PricingRuleScope = "GLOBAL"|"SERVICE"|string;
1386
+ export type PricingRuleScope = "GLOBAL"|"SERVICE"|"BILLING_ENTITY"|string;
1378
1387
  export type PricingRuleType = "MARKUP"|"DISCOUNT"|string;
1379
1388
  export type ProformaCost = string;
1380
1389
  export type Service = string;
@@ -1634,6 +1643,10 @@ declare namespace Billingconductor {
1634
1643
  * The most recent time the pricing rule was modified.
1635
1644
  */
1636
1645
  LastModifiedTime?: Instant;
1646
+ /**
1647
+ * The seller of services provided by Amazon Web Services, their affiliates, or third-party providers selling services via Amazon Web Services Marketplace.
1648
+ */
1649
+ BillingEntity?: BillingEntity;
1637
1650
  }
1638
1651
  /**
1639
1652
  * 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.
@@ -2058,7 +2058,7 @@ declare namespace CloudFormation {
2058
2058
  */
2059
2059
  ResourceIdentifierSummaries?: ResourceIdentifierSummaries;
2060
2060
  }
2061
- export type HandlerErrorCode = "NotUpdatable"|"InvalidRequest"|"AccessDenied"|"InvalidCredentials"|"AlreadyExists"|"NotFound"|"ResourceConflict"|"Throttling"|"ServiceLimitExceeded"|"NotStabilized"|"GeneralServiceException"|"ServiceInternalError"|"NetworkFailure"|"InternalFailure"|"InvalidTypeConfiguration"|"HandlerInternalFailure"|"NonCompliant"|"Unknown"|string;
2061
+ export type HandlerErrorCode = "NotUpdatable"|"InvalidRequest"|"AccessDenied"|"InvalidCredentials"|"AlreadyExists"|"NotFound"|"ResourceConflict"|"Throttling"|"ServiceLimitExceeded"|"NotStabilized"|"GeneralServiceException"|"ServiceInternalError"|"NetworkFailure"|"InternalFailure"|"InvalidTypeConfiguration"|"HandlerInternalFailure"|"NonCompliant"|"Unknown"|"UnsupportedTarget"|string;
2062
2062
  export type HookFailureMode = "FAIL"|"WARN"|string;
2063
2063
  export type HookInvocationCount = number;
2064
2064
  export type HookInvocationPoint = "PRE_PROVISION"|string;
@@ -265,7 +265,7 @@ declare namespace ComprehendMedical {
265
265
  Traits?: TraitList;
266
266
  }
267
267
  export type AttributeList = Attribute[];
268
- export type AttributeName = "SIGN"|"SYMPTOM"|"DIAGNOSIS"|"NEGATION"|string;
268
+ export type AttributeName = "SIGN"|"SYMPTOM"|"DIAGNOSIS"|"NEGATION"|"PERTAINS_TO_FAMILY"|"HYPOTHETICAL"|"LOW_CONFIDENCE"|"PAST_HISTORY"|"FUTURE"|string;
269
269
  export type BoundedLengthString = string;
270
270
  export interface Characters {
271
271
  /**
@@ -515,8 +515,8 @@ declare namespace ComprehendMedical {
515
515
  Attributes?: AttributeList;
516
516
  }
517
517
  export type EntityList = Entity[];
518
- export type EntitySubType = "NAME"|"DX_NAME"|"DOSAGE"|"ROUTE_OR_MODE"|"FORM"|"FREQUENCY"|"DURATION"|"GENERIC_NAME"|"BRAND_NAME"|"STRENGTH"|"RATE"|"ACUITY"|"TEST_NAME"|"TEST_VALUE"|"TEST_UNITS"|"TEST_UNIT"|"PROCEDURE_NAME"|"TREATMENT_NAME"|"DATE"|"AGE"|"CONTACT_POINT"|"PHONE_OR_FAX"|"EMAIL"|"IDENTIFIER"|"ID"|"URL"|"ADDRESS"|"PROFESSION"|"SYSTEM_ORGAN_SITE"|"DIRECTION"|"QUALITY"|"QUANTITY"|"TIME_EXPRESSION"|"TIME_TO_MEDICATION_NAME"|"TIME_TO_DX_NAME"|"TIME_TO_TEST_NAME"|"TIME_TO_PROCEDURE_NAME"|"TIME_TO_TREATMENT_NAME"|string;
519
- export type EntityType = "MEDICATION"|"MEDICAL_CONDITION"|"PROTECTED_HEALTH_INFORMATION"|"TEST_TREATMENT_PROCEDURE"|"ANATOMY"|"TIME_EXPRESSION"|string;
518
+ export type EntitySubType = "NAME"|"DX_NAME"|"DOSAGE"|"ROUTE_OR_MODE"|"FORM"|"FREQUENCY"|"DURATION"|"GENERIC_NAME"|"BRAND_NAME"|"STRENGTH"|"RATE"|"ACUITY"|"TEST_NAME"|"TEST_VALUE"|"TEST_UNITS"|"TEST_UNIT"|"PROCEDURE_NAME"|"TREATMENT_NAME"|"DATE"|"AGE"|"CONTACT_POINT"|"PHONE_OR_FAX"|"EMAIL"|"IDENTIFIER"|"ID"|"URL"|"ADDRESS"|"PROFESSION"|"SYSTEM_ORGAN_SITE"|"DIRECTION"|"QUALITY"|"QUANTITY"|"TIME_EXPRESSION"|"TIME_TO_MEDICATION_NAME"|"TIME_TO_DX_NAME"|"TIME_TO_TEST_NAME"|"TIME_TO_PROCEDURE_NAME"|"TIME_TO_TREATMENT_NAME"|"AMOUNT"|"GENDER"|"RACE_ETHNICITY"|"ALLERGIES"|"TOBACCO_USE"|"ALCOHOL_CONSUMPTION"|"REC_DRUG_USE"|string;
519
+ export type EntityType = "MEDICATION"|"MEDICAL_CONDITION"|"PROTECTED_HEALTH_INFORMATION"|"TEST_TREATMENT_PROCEDURE"|"ANATOMY"|"TIME_EXPRESSION"|"BEHAVIORAL_ENVIRONMENTAL_SOCIAL"|string;
520
520
  export type Float = number;
521
521
  export interface ICD10CMAttribute {
522
522
  /**
@@ -634,7 +634,7 @@ declare namespace ComprehendMedical {
634
634
  Score?: Float;
635
635
  }
636
636
  export type ICD10CMTraitList = ICD10CMTrait[];
637
- export type ICD10CMTraitName = "NEGATION"|"DIAGNOSIS"|"SIGN"|"SYMPTOM"|string;
637
+ export type ICD10CMTraitName = "NEGATION"|"DIAGNOSIS"|"SIGN"|"SYMPTOM"|"PERTAINS_TO_FAMILY"|"HYPOTHETICAL"|"LOW_CONFIDENCE"|string;
638
638
  export type IamRoleArn = string;
639
639
  export interface InferICD10CMRequest {
640
640
  /**
@@ -851,7 +851,7 @@ declare namespace ComprehendMedical {
851
851
  */
852
852
  S3Key?: S3Key;
853
853
  }
854
- export type RelationshipType = "EVERY"|"WITH_DOSAGE"|"ADMINISTERED_VIA"|"FOR"|"NEGATIVE"|"OVERLAP"|"DOSAGE"|"ROUTE_OR_MODE"|"FORM"|"FREQUENCY"|"DURATION"|"STRENGTH"|"RATE"|"ACUITY"|"TEST_VALUE"|"TEST_UNITS"|"TEST_UNIT"|"DIRECTION"|"SYSTEM_ORGAN_SITE"|string;
854
+ export type RelationshipType = "EVERY"|"WITH_DOSAGE"|"ADMINISTERED_VIA"|"FOR"|"NEGATIVE"|"OVERLAP"|"DOSAGE"|"ROUTE_OR_MODE"|"FORM"|"FREQUENCY"|"DURATION"|"STRENGTH"|"RATE"|"ACUITY"|"TEST_VALUE"|"TEST_UNITS"|"TEST_UNIT"|"DIRECTION"|"SYSTEM_ORGAN_SITE"|"AMOUNT"|string;
855
855
  export interface RxNormAttribute {
856
856
  /**
857
857
  * The type of attribute. The types of attributes recognized by InferRxNorm are BRAND_NAME and GENERIC_NAME.
@@ -1096,7 +1096,7 @@ declare namespace ComprehendMedical {
1096
1096
  Score?: Float;
1097
1097
  }
1098
1098
  export type SNOMEDCTTraitList = SNOMEDCTTrait[];
1099
- export type SNOMEDCTTraitName = "NEGATION"|"DIAGNOSIS"|"SIGN"|"SYMPTOM"|string;
1099
+ export type SNOMEDCTTraitName = "NEGATION"|"DIAGNOSIS"|"SIGN"|"SYMPTOM"|"PERTAINS_TO_FAMILY"|"HYPOTHETICAL"|"LOW_CONFIDENCE"|"PAST_HISTORY"|"FUTURE"|string;
1100
1100
  export interface StartEntitiesDetectionV2JobRequest {
1101
1101
  /**
1102
1102
  * The input configuration that specifies the format and location of the input data for the job.
@@ -859,6 +859,14 @@ declare class Connect extends Service {
859
859
  * Provides summary information about the users for the specified Amazon Connect instance.
860
860
  */
861
861
  listUsers(callback?: (err: AWSError, data: Connect.Types.ListUsersResponse) => void): Request<Connect.Types.ListUsersResponse, AWSError>;
862
+ /**
863
+ * Initiates silent monitoring of a contact. The Contact Control Panel (CCP) of the user specified by userId will be set to silent monitoring mode on the contact.
864
+ */
865
+ monitorContact(params: Connect.Types.MonitorContactRequest, callback?: (err: AWSError, data: Connect.Types.MonitorContactResponse) => void): Request<Connect.Types.MonitorContactResponse, AWSError>;
866
+ /**
867
+ * Initiates silent monitoring of a contact. The Contact Control Panel (CCP) of the user specified by userId will be set to silent monitoring mode on the contact.
868
+ */
869
+ monitorContact(callback?: (err: AWSError, data: Connect.Types.MonitorContactResponse) => void): Request<Connect.Types.MonitorContactResponse, AWSError>;
862
870
  /**
863
871
  * Changes the current status of a user or agent in Amazon Connect. If the agent is currently handling a contact, this sets the agent's next status. For more information, see Agent status and Set your next status in the Amazon Connect Administrator Guide.
864
872
  */
@@ -1424,6 +1432,7 @@ declare namespace Connect {
1424
1432
  export type AgentStatusTypes = AgentStatusType[];
1425
1433
  export type AgentUsername = string;
1426
1434
  export type AliasArn = string;
1435
+ export type AllowedMonitorCapabilities = MonitorCapability[];
1427
1436
  export interface AnswerMachineDetectionConfig {
1428
1437
  /**
1429
1438
  * The flag to indicate if answer machine detection analysis needs to be performed for a voice call. If set to true, TrafficType must be set as CAMPAIGN.
@@ -3234,7 +3243,7 @@ declare namespace Connect {
3234
3243
  */
3235
3244
  Filters: Filters;
3236
3245
  /**
3237
- * The grouping applied to the metrics returned. For example, when grouped by QUEUE, the metrics returned apply to each queue rather than aggregated for all queues. If you group by CHANNEL, you should include a Channels filter. VOICE, CHAT, and TASK channels are supported. If no Grouping is included in the request, a summary of metrics is returned.
3246
+ * The grouping applied to the metrics returned. For example, when grouped by QUEUE, the metrics returned apply to each queue rather than aggregated for all queues. If you group by CHANNEL, you should include a Channels filter. VOICE, CHAT, and TASK channels are supported. If you group by ROUTING_PROFILE, you must include either a queue or routing profile filter. If no Grouping is included in the request, a summary of metrics is returned.
3238
3247
  */
3239
3248
  Groupings?: Groupings;
3240
3249
  /**
@@ -4822,6 +4831,39 @@ declare namespace Connect {
4822
4831
  Concurrency: Concurrency;
4823
4832
  }
4824
4833
  export type MinutesLimit60 = number;
4834
+ export type MonitorCapability = "SILENT_MONITOR"|"BARGE"|string;
4835
+ export interface MonitorContactRequest {
4836
+ /**
4837
+ * The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.
4838
+ */
4839
+ InstanceId: InstanceId;
4840
+ /**
4841
+ * The identifier of the contact.
4842
+ */
4843
+ ContactId: ContactId;
4844
+ /**
4845
+ * The identifier of the user account.
4846
+ */
4847
+ UserId: AgentResourceId;
4848
+ /**
4849
+ * Specify which monitoring actions the user is allowed to take. For example, whether the user is allowed to escalate from silent monitoring to barge.
4850
+ */
4851
+ AllowedMonitorCapabilities?: AllowedMonitorCapabilities;
4852
+ /**
4853
+ * 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.
4854
+ */
4855
+ ClientToken?: ClientToken;
4856
+ }
4857
+ export interface MonitorContactResponse {
4858
+ /**
4859
+ * The identifier of the contact.
4860
+ */
4861
+ ContactId?: ContactId;
4862
+ /**
4863
+ * The ARN of the contact.
4864
+ */
4865
+ ContactArn?: ARN;
4866
+ }
4825
4867
  export type Name = string;
4826
4868
  export type Name128 = string;
4827
4869
  export type NextToken = string;
@@ -5452,7 +5494,7 @@ declare namespace Connect {
5452
5494
  */
5453
5495
  SearchFilter?: QueueSearchFilter;
5454
5496
  /**
5455
- * The search criteria to be used to return queues.
5497
+ * The search criteria to be used to return queues. The name and description fields support "contains" queries with a minimum of 2 characters and a maximum of 25 characters. Any queries with character lengths outside of this range will throw invalid results.
5456
5498
  */
5457
5499
  SearchCriteria?: QueueSearchCriteria;
5458
5500
  }
@@ -5488,7 +5530,7 @@ declare namespace Connect {
5488
5530
  */
5489
5531
  SearchFilter?: RoutingProfileSearchFilter;
5490
5532
  /**
5491
- * The search criteria to be used to return routing profiles.
5533
+ * The search criteria to be used to return routing profiles. The name and description fields support "contains" queries with a minimum of 2 characters and a maximum of 25 characters. Any queries with character lengths outside of this range will throw invalid results.
5492
5534
  */
5493
5535
  SearchCriteria?: RoutingProfileSearchCriteria;
5494
5536
  }
@@ -5520,7 +5562,7 @@ declare namespace Connect {
5520
5562
  */
5521
5563
  MaxResults?: MaxResult100;
5522
5564
  /**
5523
- * The search criteria to be used to return security profiles. The currently supported value for FieldName: name
5565
+ * The search criteria to be used to return security profiles. The name field support "contains" queries with a minimum of 2 characters and maximum of 25 characters. Any queries with character lengths outside of this range will throw invalid results. The currently supported value for FieldName: name
5524
5566
  */
5525
5567
  SearchCriteria?: SecurityProfileSearchCriteria;
5526
5568
  /**
@@ -29,11 +29,11 @@ declare class EKS extends Service {
29
29
  */
30
30
  associateIdentityProviderConfig(callback?: (err: AWSError, data: EKS.Types.AssociateIdentityProviderConfigResponse) => void): Request<EKS.Types.AssociateIdentityProviderConfigResponse, AWSError>;
31
31
  /**
32
- * Creates an Amazon EKS add-on. Amazon EKS add-ons help to automate the provisioning and lifecycle management of common operational software for Amazon EKS clusters. Amazon EKS add-ons require clusters running version 1.18 or later because Amazon EKS add-ons rely on the Server-side Apply Kubernetes feature, which is only available in Kubernetes 1.18 and later. For more information, see Amazon EKS add-ons in the Amazon EKS User Guide.
32
+ * Creates an Amazon EKS add-on. Amazon EKS add-ons help to automate the provisioning and lifecycle management of common operational software for Amazon EKS clusters. For more information, see Amazon EKS add-ons in the Amazon EKS User Guide.
33
33
  */
34
34
  createAddon(params: EKS.Types.CreateAddonRequest, callback?: (err: AWSError, data: EKS.Types.CreateAddonResponse) => void): Request<EKS.Types.CreateAddonResponse, AWSError>;
35
35
  /**
36
- * Creates an Amazon EKS add-on. Amazon EKS add-ons help to automate the provisioning and lifecycle management of common operational software for Amazon EKS clusters. Amazon EKS add-ons require clusters running version 1.18 or later because Amazon EKS add-ons rely on the Server-side Apply Kubernetes feature, which is only available in Kubernetes 1.18 and later. For more information, see Amazon EKS add-ons in the Amazon EKS User Guide.
36
+ * Creates an Amazon EKS add-on. Amazon EKS add-ons help to automate the provisioning and lifecycle management of common operational software for Amazon EKS clusters. For more information, see Amazon EKS add-ons in the Amazon EKS User Guide.
37
37
  */
38
38
  createAddon(callback?: (err: AWSError, data: EKS.Types.CreateAddonResponse) => void): Request<EKS.Types.CreateAddonResponse, AWSError>;
39
39
  /**
@@ -660,6 +660,18 @@ declare namespace EKS {
660
660
  */
661
661
  roleArn?: String;
662
662
  }
663
+ export interface ControlPlanePlacementRequest {
664
+ /**
665
+ * The name of the placement group for the Kubernetes control plane instances. This setting can't be changed after cluster creation.
666
+ */
667
+ groupName?: String;
668
+ }
669
+ export interface ControlPlanePlacementResponse {
670
+ /**
671
+ * The name of the placement group for the Kubernetes control plane instances.
672
+ */
673
+ groupName?: String;
674
+ }
663
675
  export interface CreateAddonRequest {
664
676
  /**
665
677
  * The name of the cluster to create the add-on for.
@@ -731,7 +743,7 @@ declare namespace EKS {
731
743
  */
732
744
  encryptionConfig?: EncryptionConfigList;
733
745
  /**
734
- * An object representing the configuration of your local Amazon EKS cluster on an Amazon Web Services Outpost. Before creating a local cluster on an Outpost, review Creating an Amazon EKS cluster on an Amazon Web Services Outpost in the Amazon EKS User Guide. This object isn't available for creating Amazon EKS clusters on the Amazon Web Services cloud.
746
+ * An object representing the configuration of your local Amazon EKS cluster on an Amazon Web Services Outpost. Before creating a local cluster on an Outpost, review Local clusters for Amazon EKS on Amazon Web Services Outposts in the Amazon EKS User Guide. This object isn't available for creating Amazon EKS clusters on the Amazon Web Services cloud.
735
747
  */
736
748
  outpostConfig?: OutpostConfigRequest;
737
749
  }
@@ -1219,7 +1231,7 @@ declare namespace EKS {
1219
1231
  */
1220
1232
  name?: String;
1221
1233
  /**
1222
- * The launch template version number, $Latest, or $Default. If the value is $Latest, Amazon EKS uses the latest version of the launch template. If the value is $Default, Amazon EKS uses the default version of the launch template. Default: The default version of the launch template.
1234
+ * The version number of the launch template to use. If no version is specified, then the template's default version is used.
1223
1235
  */
1224
1236
  version?: String;
1225
1237
  /**
@@ -1648,9 +1660,13 @@ declare namespace EKS {
1648
1660
  */
1649
1661
  outpostArns: StringList;
1650
1662
  /**
1651
- * The Amazon EC2 instance type that you want to use for your local Amazon EKS cluster on Outposts. The instance type that you specify is used for all Kubernetes control plane instances. The instance type can't be changed after cluster creation. Choose an instance type based on the number of nodes that your cluster will have. If your cluster will have: 1–20 nodes, then we recommend specifying a large instance type. 21–100 nodes, then we recommend specifying an xlarge instance type. 101–250 nodes, then we recommend specifying a 2xlarge instance type. For a list of the available Amazon EC2 instance types, see Compute and storage in Outposts rack features. The control plane is not automatically scaled by Amazon EKS.
1663
+ * The Amazon EC2 instance type that you want to use for your local Amazon EKS cluster on Outposts. Choose an instance type based on the number of nodes that your cluster will have. For more information, see Capacity considerations in the Amazon EKS User Guide. The instance type that you specify is used for all Kubernetes control plane instances. The instance type can't be changed after cluster creation. The control plane is not automatically scaled by Amazon EKS.
1652
1664
  */
1653
1665
  controlPlaneInstanceType: String;
1666
+ /**
1667
+ * An object representing the placement configuration for all the control plane instance of your local Amazon EKS cluster on an Amazon Web Services Outpost. For more information, see Capacity considerations in the Amazon EKS User Guide.
1668
+ */
1669
+ controlPlanePlacement?: ControlPlanePlacementRequest;
1654
1670
  }
1655
1671
  export interface OutpostConfigResponse {
1656
1672
  /**
@@ -1661,6 +1677,10 @@ declare namespace EKS {
1661
1677
  * The Amazon EC2 instance type used for the control plane. The instance type is the same for all control plane instances.
1662
1678
  */
1663
1679
  controlPlaneInstanceType: String;
1680
+ /**
1681
+ * An object representing the placement configuration for all the control plane instance of your local Amazon EKS cluster on an Amazon Web Services Outpost. For more information, see Capacity considerations in the Amazon EKS User Guide.
1682
+ */
1683
+ controlPlanePlacement?: ControlPlanePlacementResponse;
1664
1684
  }
1665
1685
  export type PercentCapacity = number;
1666
1686
  export interface Provider {
@@ -1947,7 +1967,7 @@ declare namespace EKS {
1947
1967
  */
1948
1968
  subnetIds?: StringList;
1949
1969
  /**
1950
- * Specify one or more security groups for the cross-account elastic network interfaces that Amazon EKS creates to use that allow communication between your nodes and the Kubernetes control plane. If you don't specify any security groups, then familiarize yourself with the difference between Amazon EKS defaults for clusters deployed with Kubernetes: 1.14 Amazon EKS platform version eks.2 and earlier 1.14 Amazon EKS platform version eks.3 and later For more information, see Amazon EKS security group considerations in the Amazon EKS User Guide .
1970
+ * Specify one or more security groups for the cross-account elastic network interfaces that Amazon EKS creates to use that allow communication between your nodes and the Kubernetes control plane. If you don't specify any security groups, then familiarize yourself with the difference between Amazon EKS defaults for clusters deployed with Kubernetes. For more information, see Amazon EKS security group considerations in the Amazon EKS User Guide .
1951
1971
  */
1952
1972
  securityGroupIds?: StringList;
1953
1973
  /**
@@ -601,7 +601,17 @@ declare namespace ElastiCache {
601
601
  */
602
602
  PasswordCount?: IntegerOptional;
603
603
  }
604
- export type AuthenticationType = "password"|"no-password"|string;
604
+ export interface AuthenticationMode {
605
+ /**
606
+ * Specifies the authentication type. Possible options are IAM authentication, password and no password.
607
+ */
608
+ Type?: InputAuthenticationType;
609
+ /**
610
+ * Specifies the passwords to use for authentication if Type is set to password.
611
+ */
612
+ Passwords?: PasswordListInput;
613
+ }
614
+ export type AuthenticationType = "password"|"no-password"|"iam"|string;
605
615
  export interface AuthorizeCacheSecurityGroupIngressMessage {
606
616
  /**
607
617
  * The cache security group that allows network ingress.
@@ -1585,6 +1595,10 @@ declare namespace ElastiCache {
1585
1595
  * A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.
1586
1596
  */
1587
1597
  Tags?: TagList;
1598
+ /**
1599
+ * Specifies how to authenticate the user.
1600
+ */
1601
+ AuthenticationMode?: AuthenticationMode;
1588
1602
  }
1589
1603
  export interface CustomerNodeEndpoint {
1590
1604
  /**
@@ -2422,6 +2436,7 @@ declare namespace ElastiCache {
2422
2436
  export interface IncreaseReplicaCountResult {
2423
2437
  ReplicationGroup?: ReplicationGroup;
2424
2438
  }
2439
+ export type InputAuthenticationType = "password"|"no-password-required"|"iam"|string;
2425
2440
  export type Integer = number;
2426
2441
  export type IntegerOptional = number;
2427
2442
  export type IpDiscovery = "ipv4"|"ipv6"|string;
@@ -2823,6 +2838,10 @@ declare namespace ElastiCache {
2823
2838
  * Indicates no password is required for the user.
2824
2839
  */
2825
2840
  NoPasswordRequired?: BooleanOptional;
2841
+ /**
2842
+ * Specifies how to authenticate the user.
2843
+ */
2844
+ AuthenticationMode?: AuthenticationMode;
2826
2845
  }
2827
2846
  export type MultiAZStatus = "enabled"|"disabled"|string;
2828
2847
  export type NetworkType = "ipv4"|"ipv6"|"dual_stack"|string;