aws-sdk 2.1487.0 → 2.1489.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +19 -2
- package/README.md +1 -1
- package/apis/ce-2017-10-25.min.json +42 -28
- package/apis/connect-2017-08-08.min.json +466 -346
- package/apis/docdb-2014-10-31.min.json +63 -43
- package/apis/iotwireless-2020-11-22.min.json +1 -0
- package/apis/launch-wizard-2018-05-10.examples.json +5 -0
- package/apis/launch-wizard-2018-05-10.min.json +312 -0
- package/apis/launch-wizard-2018-05-10.paginators.json +28 -0
- package/apis/metadata.json +4 -0
- package/apis/mwaa-2020-07-01.min.json +23 -7
- package/clients/all.d.ts +1 -0
- package/clients/all.js +2 -1
- package/clients/codebuild.d.ts +12 -12
- package/clients/configservice.d.ts +1 -1
- package/clients/connect.d.ts +152 -0
- package/clients/costexplorer.d.ts +32 -6
- package/clients/docdb.d.ts +31 -0
- package/clients/iotwireless.d.ts +8 -4
- package/clients/launchwizard.d.ts +450 -0
- package/clients/launchwizard.js +18 -0
- package/clients/mwaa.d.ts +3 -3
- package/clients/polly.d.ts +1 -1
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +46 -9
- package/dist/aws-sdk.js +515 -377
- package/dist/aws-sdk.min.js +99 -99
- package/lib/config_service_placeholders.d.ts +2 -0
- package/lib/core.js +1 -1
- package/lib/credentials/ec2_metadata_credentials.d.ts +14 -0
- package/lib/credentials/ec2_metadata_credentials.js +1 -0
- package/lib/metadata_service.d.ts +16 -1
- package/lib/metadata_service.js +36 -0
- package/package.json +1 -1
package/clients/connect.d.ts
CHANGED
@@ -115,6 +115,14 @@ declare class Connect extends Service {
|
|
115
115
|
* Retrieve the flow associations for the given resources.
|
116
116
|
*/
|
117
117
|
batchGetFlowAssociation(callback?: (err: AWSError, data: Connect.Types.BatchGetFlowAssociationResponse) => void): Request<Connect.Types.BatchGetFlowAssociationResponse, AWSError>;
|
118
|
+
/**
|
119
|
+
* Only the Amazon Connect outbound campaigns service principal is allowed to assume a role in your account and call this API. Allows you to create a batch of contacts in Amazon Connect. The outbound campaigns capability ingests dial requests via the PutDialRequestBatch API. It then uses BatchPutContact to create contacts corresponding to those dial requests. If agents are available, the dial requests are dialed out, which results in a voice call. The resulting voice call uses the same contactId that was created by BatchPutContact.
|
120
|
+
*/
|
121
|
+
batchPutContact(params: Connect.Types.BatchPutContactRequest, callback?: (err: AWSError, data: Connect.Types.BatchPutContactResponse) => void): Request<Connect.Types.BatchPutContactResponse, AWSError>;
|
122
|
+
/**
|
123
|
+
* Only the Amazon Connect outbound campaigns service principal is allowed to assume a role in your account and call this API. Allows you to create a batch of contacts in Amazon Connect. The outbound campaigns capability ingests dial requests via the PutDialRequestBatch API. It then uses BatchPutContact to create contacts corresponding to those dial requests. If agents are available, the dial requests are dialed out, which results in a voice call. The resulting voice call uses the same contactId that was created by BatchPutContact.
|
124
|
+
*/
|
125
|
+
batchPutContact(callback?: (err: AWSError, data: Connect.Types.BatchPutContactResponse) => void): Request<Connect.Types.BatchPutContactResponse, AWSError>;
|
118
126
|
/**
|
119
127
|
* Claims an available phone number to your Amazon Connect instance or traffic distribution group. You can call this API only in the same Amazon Web Services Region where the Amazon Connect instance or traffic distribution group was created. For more information about how to use this operation, see Claim a phone number in your country and Claim phone numbers to traffic distribution groups in the Amazon Connect Administrator Guide. You can call the SearchAvailablePhoneNumbers API for available phone numbers that you can claim. Call the DescribePhoneNumber API to verify the status of a previous ClaimPhoneNumber operation. If you plan to claim and release numbers frequently during a 30 day period, contact us for a service quota exception. Otherwise, it is possible you will be blocked from claiming and releasing any more numbers until 30 days past the oldest number released has expired. By default you can claim and release up to 200% of your maximum number of active phone numbers during any 30 day period. If you claim and release phone numbers using the UI or API during a rolling 30 day cycle that exceeds 200% of your phone number service level quota, you will be blocked from claiming any more numbers until 30 days past the oldest number released has expired. For example, if you already have 99 claimed numbers and a service level quota of 99 phone numbers, and in any 30 day period you release 99, claim 99, and then release 99, you will have exceeded the 200% limit. At that point you are blocked from claiming any more numbers until you open an Amazon Web Services support ticket.
|
120
128
|
*/
|
@@ -187,6 +195,14 @@ declare class Connect extends Service {
|
|
187
195
|
* Adds a new participant into an on-going chat contact. For more information, see Customize chat flow experiences by integrating custom participants.
|
188
196
|
*/
|
189
197
|
createParticipant(callback?: (err: AWSError, data: Connect.Types.CreateParticipantResponse) => void): Request<Connect.Types.CreateParticipantResponse, AWSError>;
|
198
|
+
/**
|
199
|
+
* Enables rehydration of chats for the lifespan of a contact. For more information about chat rehydration, see Enable persistent chat in the Amazon Connect Administrator Guide.
|
200
|
+
*/
|
201
|
+
createPersistentContactAssociation(params: Connect.Types.CreatePersistentContactAssociationRequest, callback?: (err: AWSError, data: Connect.Types.CreatePersistentContactAssociationResponse) => void): Request<Connect.Types.CreatePersistentContactAssociationResponse, AWSError>;
|
202
|
+
/**
|
203
|
+
* Enables rehydration of chats for the lifespan of a contact. For more information about chat rehydration, see Enable persistent chat in the Amazon Connect Administrator Guide.
|
204
|
+
*/
|
205
|
+
createPersistentContactAssociation(callback?: (err: AWSError, data: Connect.Types.CreatePersistentContactAssociationResponse) => void): Request<Connect.Types.CreatePersistentContactAssociationResponse, AWSError>;
|
190
206
|
/**
|
191
207
|
* Creates a prompt. For more information about prompts, such as supported file types and maximum length, see Create prompts in the Amazon Connect Administrator's Guide.
|
192
208
|
*/
|
@@ -2132,11 +2148,41 @@ declare namespace Connect {
|
|
2132
2148
|
*/
|
2133
2149
|
FlowAssociationSummaryList?: FlowAssociationSummaryList;
|
2134
2150
|
}
|
2151
|
+
export interface BatchPutContactRequest {
|
2152
|
+
/**
|
2153
|
+
* 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.
|
2154
|
+
*/
|
2155
|
+
ClientToken?: ClientToken;
|
2156
|
+
/**
|
2157
|
+
* The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
|
2158
|
+
*/
|
2159
|
+
InstanceId: InstanceId;
|
2160
|
+
/**
|
2161
|
+
* List of individual contact requests.
|
2162
|
+
*/
|
2163
|
+
ContactDataRequestList: ContactDataRequestList;
|
2164
|
+
}
|
2165
|
+
export interface BatchPutContactResponse {
|
2166
|
+
/**
|
2167
|
+
* List of requests for which contact was successfully created.
|
2168
|
+
*/
|
2169
|
+
SuccessfulRequestList?: SuccessfulRequestList;
|
2170
|
+
/**
|
2171
|
+
* List of requests for which contact creation failed.
|
2172
|
+
*/
|
2173
|
+
FailedRequestList?: FailedRequestList;
|
2174
|
+
}
|
2135
2175
|
export type BehaviorType = "ROUTE_CURRENT_CHANNEL_ONLY"|"ROUTE_ANY_CHANNEL"|string;
|
2136
2176
|
export type Boolean = boolean;
|
2137
2177
|
export type BotName = string;
|
2138
2178
|
export type BoxedBoolean = boolean;
|
2139
2179
|
export type BucketName = string;
|
2180
|
+
export interface Campaign {
|
2181
|
+
/**
|
2182
|
+
* A unique identifier for a campaign.
|
2183
|
+
*/
|
2184
|
+
CampaignId?: CampaignId;
|
2185
|
+
}
|
2140
2186
|
export type CampaignId = string;
|
2141
2187
|
export type Channel = "VOICE"|"CHAT"|"TASK"|string;
|
2142
2188
|
export type ChannelToCountMap = {[key: string]: IntegerCount};
|
@@ -2315,6 +2361,33 @@ declare namespace Connect {
|
|
2315
2361
|
*/
|
2316
2362
|
WisdomInfo?: WisdomInfo;
|
2317
2363
|
}
|
2364
|
+
export interface ContactDataRequest {
|
2365
|
+
/**
|
2366
|
+
* Endpoint associated with the Amazon Connect instance from which outbound contact will be initiated for the campaign.
|
2367
|
+
*/
|
2368
|
+
SystemEndpoint?: Endpoint;
|
2369
|
+
/**
|
2370
|
+
* Endpoint of the customer for which contact will be initiated.
|
2371
|
+
*/
|
2372
|
+
CustomerEndpoint?: Endpoint;
|
2373
|
+
/**
|
2374
|
+
* Identifier to uniquely identify individual requests in the batch.
|
2375
|
+
*/
|
2376
|
+
RequestIdentifier?: RequestIdentifier;
|
2377
|
+
/**
|
2378
|
+
* The identifier of the queue associated with the Amazon Connect instance in which contacts that are created will be queued.
|
2379
|
+
*/
|
2380
|
+
QueueId?: QueueId;
|
2381
|
+
/**
|
2382
|
+
* List of attributes to be stored in a contact.
|
2383
|
+
*/
|
2384
|
+
Attributes?: Attributes;
|
2385
|
+
/**
|
2386
|
+
* Structure to store information associated with a campaign.
|
2387
|
+
*/
|
2388
|
+
Campaign?: Campaign;
|
2389
|
+
}
|
2390
|
+
export type ContactDataRequestList = ContactDataRequest[];
|
2318
2391
|
export interface ContactFilter {
|
2319
2392
|
/**
|
2320
2393
|
* A list of up to 9 contact states.
|
@@ -2748,6 +2821,34 @@ declare namespace Connect {
|
|
2748
2821
|
*/
|
2749
2822
|
ParticipantId?: ParticipantId;
|
2750
2823
|
}
|
2824
|
+
export interface CreatePersistentContactAssociationRequest {
|
2825
|
+
/**
|
2826
|
+
* The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
|
2827
|
+
*/
|
2828
|
+
InstanceId: InstanceId;
|
2829
|
+
/**
|
2830
|
+
* This is the contactId of the current contact that the CreatePersistentContactAssociation API is being called from.
|
2831
|
+
*/
|
2832
|
+
InitialContactId: ContactId;
|
2833
|
+
/**
|
2834
|
+
* The contactId chosen for rehydration depends on the type chosen. ENTIRE_PAST_SESSION: Rehydrates a chat from the most recently terminated past chat contact of the specified past ended chat session. To use this type, provide the initialContactId of the past ended chat session in the sourceContactId field. In this type, Amazon Connect determines what the most recent chat contact on the past ended chat session and uses it to start a persistent chat. FROM_SEGMENT: Rehydrates a chat from the specified past chat contact provided in the sourceContactId field. The actual contactId used for rehydration is provided in the response of this API. To illustrate how to use rehydration type, consider the following example: A customer starts a chat session. Agent a1 accepts the chat and a conversation starts between the customer and Agent a1. This first contact creates a contact ID C1. Agent a1 then transfers the chat to Agent a2. This creates another contact ID C2. At this point Agent a2 ends the chat. The customer is forwarded to the disconnect flow for a post chat survey that creates another contact ID C3. After the chat survey, the chat session ends. Later, the customer returns and wants to resume their past chat session. At this point, the customer can have following use cases: Use Case 1: The customer wants to continue the past chat session but they want to hide the post chat survey. For this they will use the following configuration: Configuration SourceContactId = "C2" RehydrationType = "FROM_SEGMENT" Expected behavior This starts a persistent chat session from the specified past ended contact (C2). Transcripts of past chat sessions C2 and C1 are accessible in the current persistent chat session. Note that chat segment C3 is dropped from the persistent chat session. Use Case 2: The customer wants to continue the past chat session and see the transcript of the entire past engagement, including the post chat survey. For this they will use the following configuration: Configuration SourceContactId = "C1" RehydrationType = "ENTIRE_PAST_SESSION" Expected behavior This starts a persistent chat session from the most recently ended chat contact (C3). Transcripts of past chat sessions C3, C2 and C1 are accessible in the current persistent chat session.
|
2835
|
+
*/
|
2836
|
+
RehydrationType: RehydrationType;
|
2837
|
+
/**
|
2838
|
+
* The contactId from which a persistent chat session must be started.
|
2839
|
+
*/
|
2840
|
+
SourceContactId: ContactId;
|
2841
|
+
/**
|
2842
|
+
* 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.
|
2843
|
+
*/
|
2844
|
+
ClientToken?: ClientToken;
|
2845
|
+
}
|
2846
|
+
export interface CreatePersistentContactAssociationResponse {
|
2847
|
+
/**
|
2848
|
+
* The contactId from which a persistent chat session is started. This field is populated only for persistent chat.
|
2849
|
+
*/
|
2850
|
+
ContinuedFromContactId?: ContactId;
|
2851
|
+
}
|
2751
2852
|
export interface CreatePromptRequest {
|
2752
2853
|
/**
|
2753
2854
|
* The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
|
@@ -4144,6 +4245,13 @@ declare namespace Connect {
|
|
4144
4245
|
}
|
4145
4246
|
export interface DisassociateTrafficDistributionGroupUserResponse {
|
4146
4247
|
}
|
4248
|
+
export interface DisconnectReason {
|
4249
|
+
/**
|
4250
|
+
* A code that indicates how the contact was terminated.
|
4251
|
+
*/
|
4252
|
+
Code?: DisconnectReasonCode;
|
4253
|
+
}
|
4254
|
+
export type DisconnectReasonCode = string;
|
4147
4255
|
export interface DismissUserContactRequest {
|
4148
4256
|
/**
|
4149
4257
|
* The identifier of the user account.
|
@@ -4194,6 +4302,18 @@ declare namespace Connect {
|
|
4194
4302
|
KeyId: KeyId;
|
4195
4303
|
}
|
4196
4304
|
export type EncryptionType = "KMS"|string;
|
4305
|
+
export interface Endpoint {
|
4306
|
+
/**
|
4307
|
+
* Type of the endpoint.
|
4308
|
+
*/
|
4309
|
+
Type?: EndpointType;
|
4310
|
+
/**
|
4311
|
+
* Address of the endpoint.
|
4312
|
+
*/
|
4313
|
+
Address?: EndpointAddress;
|
4314
|
+
}
|
4315
|
+
export type EndpointAddress = string;
|
4316
|
+
export type EndpointType = "TELEPHONE_NUMBER"|"VOIP"|"CONTACT_FLOW"|string;
|
4197
4317
|
export interface Evaluation {
|
4198
4318
|
/**
|
4199
4319
|
* A unique identifier for the contact evaluation.
|
@@ -4724,6 +4844,22 @@ declare namespace Connect {
|
|
4724
4844
|
}
|
4725
4845
|
export type EventBridgeActionName = string;
|
4726
4846
|
export type EventSourceName = "OnPostCallAnalysisAvailable"|"OnRealTimeCallAnalysisAvailable"|"OnPostChatAnalysisAvailable"|"OnZendeskTicketCreate"|"OnZendeskTicketStatusUpdate"|"OnSalesforceCaseCreate"|"OnContactEvaluationSubmit"|"OnMetricDataUpdate"|string;
|
4847
|
+
export interface FailedRequest {
|
4848
|
+
/**
|
4849
|
+
* Request identifier provided in the API call in the ContactDataRequest to create a contact.
|
4850
|
+
*/
|
4851
|
+
RequestIdentifier?: RequestIdentifier;
|
4852
|
+
/**
|
4853
|
+
* Reason code for the failure.
|
4854
|
+
*/
|
4855
|
+
FailureReasonCode?: FailureReasonCode;
|
4856
|
+
/**
|
4857
|
+
* Why the request to create a contact failed.
|
4858
|
+
*/
|
4859
|
+
FailureReasonMessage?: String;
|
4860
|
+
}
|
4861
|
+
export type FailedRequestList = FailedRequest[];
|
4862
|
+
export type FailureReasonCode = "INVALID_ATTRIBUTE_KEY"|"INVALID_CUSTOMER_ENDPOINT"|"INVALID_SYSTEM_ENDPOINT"|"INVALID_QUEUE"|"MISSING_CAMPAIGN"|"MISSING_CUSTOMER_ENDPOINT"|"MISSING_QUEUE_ID_AND_SYSTEM_ENDPOINT"|"REQUEST_THROTTLED"|"IDEMPOTENCY_EXCEPTION"|"INTERNAL_ERROR"|string;
|
4727
4863
|
export interface FilterV2 {
|
4728
4864
|
/**
|
4729
4865
|
* The key to use for filtering data. For example, QUEUE, ROUTING_PROFILE, AGENT, CHANNEL, AGENT_HIERARCHY_LEVEL_ONE, AGENT_HIERARCHY_LEVEL_TWO, AGENT_HIERARCHY_LEVEL_THREE, AGENT_HIERARCHY_LEVEL_FOUR, AGENT_HIERARCHY_LEVEL_FIVE. There must be at least 1 key and a maximum 5 keys.
|
@@ -7519,6 +7655,7 @@ declare namespace Connect {
|
|
7519
7655
|
*/
|
7520
7656
|
Arn?: ARN;
|
7521
7657
|
}
|
7658
|
+
export type RequestIdentifier = string;
|
7522
7659
|
export interface RequiredFieldInfo {
|
7523
7660
|
/**
|
7524
7661
|
* The unique identifier for the field.
|
@@ -8661,6 +8798,10 @@ declare namespace Connect {
|
|
8661
8798
|
* The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
|
8662
8799
|
*/
|
8663
8800
|
InstanceId: InstanceId;
|
8801
|
+
/**
|
8802
|
+
* The reason a contact can be disconnected. Only Amazon Connect outbound campaigns can provide this field.
|
8803
|
+
*/
|
8804
|
+
DisconnectReason?: DisconnectReason;
|
8664
8805
|
}
|
8665
8806
|
export interface StopContactResponse {
|
8666
8807
|
}
|
@@ -8737,6 +8878,17 @@ declare namespace Connect {
|
|
8737
8878
|
*/
|
8738
8879
|
EvaluationArn: ARN;
|
8739
8880
|
}
|
8881
|
+
export interface SuccessfulRequest {
|
8882
|
+
/**
|
8883
|
+
* Request identifier provided in the API call in the ContactDataRequest to create a contact.
|
8884
|
+
*/
|
8885
|
+
RequestIdentifier?: RequestIdentifier;
|
8886
|
+
/**
|
8887
|
+
* The contactId of the contact that was created successfully.
|
8888
|
+
*/
|
8889
|
+
ContactId?: ContactId;
|
8890
|
+
}
|
8891
|
+
export type SuccessfulRequestList = SuccessfulRequest[];
|
8740
8892
|
export type SupportedMessagingContentType = string;
|
8741
8893
|
export type SupportedMessagingContentTypes = SupportedMessagingContentType[];
|
8742
8894
|
export interface SuspendContactRecordingRequest {
|
@@ -1963,25 +1963,29 @@ declare namespace CostExplorer {
|
|
1963
1963
|
}
|
1964
1964
|
export interface InstanceDetails {
|
1965
1965
|
/**
|
1966
|
-
* The Amazon EC2
|
1966
|
+
* The Amazon EC2 reservations that Amazon Web Services recommends that you purchase.
|
1967
1967
|
*/
|
1968
1968
|
EC2InstanceDetails?: EC2InstanceDetails;
|
1969
1969
|
/**
|
1970
|
-
* The Amazon RDS
|
1970
|
+
* The Amazon RDS reservations that Amazon Web Services recommends that you purchase.
|
1971
1971
|
*/
|
1972
1972
|
RDSInstanceDetails?: RDSInstanceDetails;
|
1973
1973
|
/**
|
1974
|
-
* The Amazon Redshift
|
1974
|
+
* The Amazon Redshift reservations that Amazon Web Services recommends that you purchase.
|
1975
1975
|
*/
|
1976
1976
|
RedshiftInstanceDetails?: RedshiftInstanceDetails;
|
1977
1977
|
/**
|
1978
|
-
* The ElastiCache
|
1978
|
+
* The ElastiCache reservations that Amazon Web Services recommends that you purchase.
|
1979
1979
|
*/
|
1980
1980
|
ElastiCacheInstanceDetails?: ElastiCacheInstanceDetails;
|
1981
1981
|
/**
|
1982
|
-
* The Amazon OpenSearch Service
|
1982
|
+
* The Amazon OpenSearch Service reservations that Amazon Web Services recommends that you purchase.
|
1983
1983
|
*/
|
1984
1984
|
ESInstanceDetails?: ESInstanceDetails;
|
1985
|
+
/**
|
1986
|
+
* The MemoryDB reservations that Amazon Web Services recommends that you purchase.
|
1987
|
+
*/
|
1988
|
+
MemoryDBInstanceDetails?: MemoryDBInstanceDetails;
|
1985
1989
|
}
|
1986
1990
|
export type Key = string;
|
1987
1991
|
export type Keys = Key[];
|
@@ -2085,6 +2089,28 @@ declare namespace CostExplorer {
|
|
2085
2089
|
export type MatchOption = "EQUALS"|"ABSENT"|"STARTS_WITH"|"ENDS_WITH"|"CONTAINS"|"CASE_SENSITIVE"|"CASE_INSENSITIVE"|"GREATER_THAN_OR_EQUAL"|string;
|
2086
2090
|
export type MatchOptions = MatchOption[];
|
2087
2091
|
export type MaxResults = number;
|
2092
|
+
export interface MemoryDBInstanceDetails {
|
2093
|
+
/**
|
2094
|
+
* The instance family of the recommended reservation.
|
2095
|
+
*/
|
2096
|
+
Family?: GenericString;
|
2097
|
+
/**
|
2098
|
+
* The node type of the recommended reservation.
|
2099
|
+
*/
|
2100
|
+
NodeType?: GenericString;
|
2101
|
+
/**
|
2102
|
+
* The Amazon Web Services Region of the recommended reservation.
|
2103
|
+
*/
|
2104
|
+
Region?: GenericString;
|
2105
|
+
/**
|
2106
|
+
* Determines whether the recommendation is for a current generation instance.
|
2107
|
+
*/
|
2108
|
+
CurrentGeneration?: GenericBoolean;
|
2109
|
+
/**
|
2110
|
+
* Determines whether the recommended reservation is size flexible.
|
2111
|
+
*/
|
2112
|
+
SizeFlexEligible?: GenericBoolean;
|
2113
|
+
}
|
2088
2114
|
export type Metric = "BLENDED_COST"|"UNBLENDED_COST"|"AMORTIZED_COST"|"NET_UNBLENDED_COST"|"NET_AMORTIZED_COST"|"USAGE_QUANTITY"|"NORMALIZED_USAGE_AMOUNT"|string;
|
2089
2115
|
export type MetricAmount = string;
|
2090
2116
|
export type MetricName = string;
|
@@ -2478,7 +2504,7 @@ declare namespace CostExplorer {
|
|
2478
2504
|
*/
|
2479
2505
|
AccountId?: GenericString;
|
2480
2506
|
/**
|
2481
|
-
* Details about the
|
2507
|
+
* Details about the reservations that Amazon Web Services recommends that you purchase.
|
2482
2508
|
*/
|
2483
2509
|
InstanceDetails?: InstanceDetails;
|
2484
2510
|
/**
|
package/clients/docdb.d.ts
CHANGED
@@ -506,6 +506,7 @@ declare namespace DocDB {
|
|
506
506
|
export type AvailabilityZones = String[];
|
507
507
|
export type Boolean = boolean;
|
508
508
|
export type BooleanOptional = boolean;
|
509
|
+
export type CACertificateIdentifiersList = String[];
|
509
510
|
export interface Certificate {
|
510
511
|
/**
|
511
512
|
* The unique key that identifies a certificate. Example: rds-ca-2019
|
@@ -532,6 +533,16 @@ declare namespace DocDB {
|
|
532
533
|
*/
|
533
534
|
CertificateArn?: String;
|
534
535
|
}
|
536
|
+
export interface CertificateDetails {
|
537
|
+
/**
|
538
|
+
* The CA identifier of the CA certificate used for the DB instance's server certificate.
|
539
|
+
*/
|
540
|
+
CAIdentifier?: String;
|
541
|
+
/**
|
542
|
+
* The expiration date of the DB instance’s server certificate.
|
543
|
+
*/
|
544
|
+
ValidTill?: TStamp;
|
545
|
+
}
|
535
546
|
export type CertificateList = Certificate[];
|
536
547
|
export interface CertificateMessage {
|
537
548
|
/**
|
@@ -775,6 +786,10 @@ declare namespace DocDB {
|
|
775
786
|
* The KMS key identifier for encryption of Performance Insights data. The KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. If you do not specify a value for PerformanceInsightsKMSKeyId, then Amazon DocumentDB uses your default KMS key. There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services region.
|
776
787
|
*/
|
777
788
|
PerformanceInsightsKMSKeyId?: String;
|
789
|
+
/**
|
790
|
+
* The CA certificate identifier to use for the DB instance's server certificate. For more information, see Updating Your Amazon DocumentDB TLS Certificates and Encrypting Data in Transit in the Amazon DocumentDB Developer Guide.
|
791
|
+
*/
|
792
|
+
CACertificateIdentifier?: String;
|
778
793
|
}
|
779
794
|
export interface CreateDBInstanceResult {
|
780
795
|
DBInstance?: DBInstance;
|
@@ -1217,6 +1232,14 @@ declare namespace DocDB {
|
|
1217
1232
|
* A value that indicates whether the engine version supports exporting the log types specified by ExportableLogTypes to CloudWatch Logs.
|
1218
1233
|
*/
|
1219
1234
|
SupportsLogExportsToCloudwatchLogs?: Boolean;
|
1235
|
+
/**
|
1236
|
+
* A list of the supported CA certificate identifiers. For more information, see Updating Your Amazon DocumentDB TLS Certificates and Encrypting Data in Transit in the Amazon DocumentDB Developer Guide.
|
1237
|
+
*/
|
1238
|
+
SupportedCACertificateIdentifiers?: CACertificateIdentifiersList;
|
1239
|
+
/**
|
1240
|
+
* Indicates whether the engine version supports rotating the server certificate without rebooting the DB instance.
|
1241
|
+
*/
|
1242
|
+
SupportsCertificateRotationWithoutRestart?: BooleanOptional;
|
1220
1243
|
}
|
1221
1244
|
export type DBEngineVersionList = DBEngineVersion[];
|
1222
1245
|
export interface DBEngineVersionMessage {
|
@@ -1338,6 +1361,10 @@ declare namespace DocDB {
|
|
1338
1361
|
* A list of log types that this instance is configured to export to CloudWatch Logs.
|
1339
1362
|
*/
|
1340
1363
|
EnabledCloudwatchLogsExports?: LogTypeList;
|
1364
|
+
/**
|
1365
|
+
* The details of the DB instance's server certificate.
|
1366
|
+
*/
|
1367
|
+
CertificateDetails?: CertificateDetails;
|
1341
1368
|
}
|
1342
1369
|
export type DBInstanceList = DBInstance[];
|
1343
1370
|
export interface DBInstanceMessage {
|
@@ -2202,6 +2229,10 @@ declare namespace DocDB {
|
|
2202
2229
|
* The KMS key identifier for encryption of Performance Insights data. The KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. If you do not specify a value for PerformanceInsightsKMSKeyId, then Amazon DocumentDB uses your default KMS key. There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services region.
|
2203
2230
|
*/
|
2204
2231
|
PerformanceInsightsKMSKeyId?: String;
|
2232
|
+
/**
|
2233
|
+
* Specifies whether the DB instance is restarted when you rotate your SSL/TLS certificate. By default, the DB instance is restarted when you rotate your SSL/TLS certificate. The certificate is not updated until the DB instance is restarted. Set this parameter only if you are not using SSL/TLS to connect to the DB instance. If you are using SSL/TLS to connect to the DB instance, see Updating Your Amazon DocumentDB TLS Certificates and Encrypting Data in Transit in the Amazon DocumentDB Developer Guide.
|
2234
|
+
*/
|
2235
|
+
CertificateRotationRestart?: BooleanOptional;
|
2205
2236
|
}
|
2206
2237
|
export interface ModifyDBInstanceResult {
|
2207
2238
|
DBInstance?: DBInstance;
|
package/clients/iotwireless.d.ts
CHANGED
@@ -1995,7 +1995,7 @@ declare namespace IoTWireless {
|
|
1995
1995
|
export interface GetNetworkAnalyzerConfigurationResponse {
|
1996
1996
|
TraceContent?: TraceContent;
|
1997
1997
|
/**
|
1998
|
-
* List of wireless
|
1998
|
+
* List of wireless device resources that have been added to the network analyzer configuration.
|
1999
1999
|
*/
|
2000
2000
|
WirelessDevices?: WirelessDeviceList;
|
2001
2001
|
/**
|
@@ -2077,7 +2077,7 @@ declare namespace IoTWireless {
|
|
2077
2077
|
}
|
2078
2078
|
export interface GetPositionEstimateResponse {
|
2079
2079
|
/**
|
2080
|
-
* The position information of the resource, displayed as a JSON payload. The payload uses the GeoJSON format, which a format that's used to encode geographic data structures. For more information, see
|
2080
|
+
* The position information of the resource, displayed as a JSON payload. The payload is of type blob and uses the GeoJSON format, which a format that's used to encode geographic data structures. A sample payload contains the timestamp information, the WGS84 coordinates of the location, and the accuracy and confidence level. For more information and examples, see Resolve device location (console).
|
2081
2081
|
*/
|
2082
2082
|
GeoJsonPayload?: GeoJsonPayload;
|
2083
2083
|
}
|
@@ -3146,7 +3146,7 @@ declare namespace IoTWireless {
|
|
3146
3146
|
*/
|
3147
3147
|
MaxEirp?: MaxEirp;
|
3148
3148
|
/**
|
3149
|
-
* The MaxDutyCycle value.
|
3149
|
+
* The MaxDutyCycle value. It ranges from 0 to 15.
|
3150
3150
|
*/
|
3151
3151
|
MaxDutyCycle?: MaxDutyCycle;
|
3152
3152
|
/**
|
@@ -3580,6 +3580,10 @@ declare namespace IoTWireless {
|
|
3580
3580
|
* The AppEUI value.
|
3581
3581
|
*/
|
3582
3582
|
AppEui?: AppEui;
|
3583
|
+
/**
|
3584
|
+
* The JoinEUI value.
|
3585
|
+
*/
|
3586
|
+
JoinEui?: JoinEui;
|
3583
3587
|
/**
|
3584
3588
|
* The GenAppKey value.
|
3585
3589
|
*/
|
@@ -4398,7 +4402,7 @@ declare namespace IoTWireless {
|
|
4398
4402
|
*/
|
4399
4403
|
MulticastGroupsToAdd?: NetworkAnalyzerMulticastGroupList;
|
4400
4404
|
/**
|
4401
|
-
* Multicast group resources to remove from the network analyzer configuration. Provide the MulticastGroupId of the
|
4405
|
+
* Multicast group resources to remove from the network analyzer configuration. Provide the MulticastGroupId of the resources to remove in the input array.
|
4402
4406
|
*/
|
4403
4407
|
MulticastGroupsToRemove?: NetworkAnalyzerMulticastGroupList;
|
4404
4408
|
}
|