aws-sdk 2.1616.0 → 2.1618.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/README.md +1 -1
- package/apis/bedrock-agent-runtime-2023-07-26.min.json +64 -2
- package/apis/discovery-2015-11-01.min.json +3 -0
- package/apis/greengrassv2-2020-11-30.min.json +17 -3
- package/apis/pinpoint-2016-12-01.min.json +399 -377
- package/apis/ssm-sap-2018-05-10.min.json +95 -0
- package/apis/ssm-sap-2018-05-10.paginators.json +6 -0
- package/apis/sso-oidc-2019-06-10.examples.json +9 -0
- package/apis/sso-oidc-2019-06-10.min.json +32 -9
- package/apis/verifiedpermissions-2021-12-01.min.json +52 -27
- package/clients/bedrockagentruntime.d.ts +80 -8
- package/clients/greengrassv2.d.ts +15 -5
- package/clients/pinpoint.d.ts +27 -0
- package/clients/route53resolver.d.ts +3 -3
- package/clients/sagemaker.d.ts +2 -2
- package/clients/ssmsap.d.ts +121 -1
- package/clients/ssooidc.d.ts +32 -4
- package/clients/verifiedpermissions.d.ts +40 -6
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +9 -9
- package/dist/aws-sdk.js +3 -3
- package/dist/aws-sdk.min.js +2 -2
- package/lib/core.js +1 -1
- package/package.json +1 -1
@@ -13,11 +13,11 @@ declare class BedrockAgentRuntime extends Service {
|
|
13
13
|
constructor(options?: BedrockAgentRuntime.Types.ClientConfiguration)
|
14
14
|
config: Config & BedrockAgentRuntime.Types.ClientConfiguration;
|
15
15
|
/**
|
16
|
-
* Sends a prompt for the agent to process and respond to.
|
16
|
+
* The CLI doesn't support InvokeAgent. Sends a prompt for the agent to process and respond to. Note the following fields for the request: To continue the same conversation with an agent, use the same sessionId value in the request. To activate trace enablement, turn enableTrace to true. Trace enablement helps you follow the agent's reasoning process that led it to the information it processed, the actions it took, and the final result it yielded. For more information, see Trace enablement. End a conversation by setting endSession to true. In the sessionState object, you can include attributes for the session or prompt or, if you configured an action group to return control, results from invocation of the action group. The response is returned in the bytes field of the chunk object. The attribution object contains citations for parts of the response. If you set enableTrace to true in the request, you can trace the agent's steps and reasoning process that led it to the response. If the action predicted was configured to return control, the response returns parameters for the action, elicited from the user, in the returnControl field. Errors are also surfaced in the response.
|
17
17
|
*/
|
18
18
|
invokeAgent(params: BedrockAgentRuntime.Types.InvokeAgentRequest, callback?: (err: AWSError, data: BedrockAgentRuntime.Types.InvokeAgentResponse) => void): Request<BedrockAgentRuntime.Types.InvokeAgentResponse, AWSError>;
|
19
19
|
/**
|
20
|
-
* Sends a prompt for the agent to process and respond to.
|
20
|
+
* The CLI doesn't support InvokeAgent. Sends a prompt for the agent to process and respond to. Note the following fields for the request: To continue the same conversation with an agent, use the same sessionId value in the request. To activate trace enablement, turn enableTrace to true. Trace enablement helps you follow the agent's reasoning process that led it to the information it processed, the actions it took, and the final result it yielded. For more information, see Trace enablement. End a conversation by setting endSession to true. In the sessionState object, you can include attributes for the session or prompt or, if you configured an action group to return control, results from invocation of the action group. The response is returned in the bytes field of the chunk object. The attribution object contains citations for parts of the response. If you set enableTrace to true in the request, you can trace the agent's steps and reasoning process that led it to the response. If the action predicted was configured to return control, the response returns parameters for the action, elicited from the user, in the returnControl field. Errors are also surfaced in the response.
|
21
21
|
*/
|
22
22
|
invokeAgent(callback?: (err: AWSError, data: BedrockAgentRuntime.Types.InvokeAgentResponse) => void): Request<BedrockAgentRuntime.Types.InvokeAgentResponse, AWSError>;
|
23
23
|
/**
|
@@ -75,6 +75,10 @@ declare namespace BedrockAgentRuntime {
|
|
75
75
|
}
|
76
76
|
export type ActionGroupName = string;
|
77
77
|
export type ActionGroupOutputString = string;
|
78
|
+
export type AdditionalModelRequestFields = {[key: string]: AdditionalModelRequestFieldsValue};
|
79
|
+
export type AdditionalModelRequestFieldsKey = string;
|
80
|
+
export interface AdditionalModelRequestFieldsValue {
|
81
|
+
}
|
78
82
|
export type AgentAliasId = string;
|
79
83
|
export type AgentId = string;
|
80
84
|
export type AgentVersion = string;
|
@@ -141,7 +145,7 @@ declare namespace BedrockAgentRuntime {
|
|
141
145
|
*/
|
142
146
|
httpStatusCode?: Integer;
|
143
147
|
/**
|
144
|
-
* The response body from the API operation. The key of the object is the content type. The response may be returned directly or from the Lambda function.
|
148
|
+
* The response body from the API operation. The key of the object is the content type (currently, only TEXT is supported). The response may be returned directly or from the Lambda function.
|
145
149
|
*/
|
146
150
|
responseBody?: ResponseBody;
|
147
151
|
/**
|
@@ -227,6 +231,18 @@ declare namespace BedrockAgentRuntime {
|
|
227
231
|
export type ExternalSourceType = "S3"|"BYTE_CONTENT"|string;
|
228
232
|
export type ExternalSources = ExternalSource[];
|
229
233
|
export interface ExternalSourcesGenerationConfiguration {
|
234
|
+
/**
|
235
|
+
* Additional model parameters and their corresponding values not included in the textInferenceConfig structure for an external source. Takes in custom model parameters specific to the language model being used.
|
236
|
+
*/
|
237
|
+
additionalModelRequestFields?: AdditionalModelRequestFields;
|
238
|
+
/**
|
239
|
+
* The configuration details for the guardrail.
|
240
|
+
*/
|
241
|
+
guardrailConfiguration?: GuardrailConfiguration;
|
242
|
+
/**
|
243
|
+
* Configuration settings for inference when using RetrieveAndGenerate to generate responses while using an external source.
|
244
|
+
*/
|
245
|
+
inferenceConfig?: InferenceConfig;
|
230
246
|
/**
|
231
247
|
* Contain the textPromptTemplate string for the external source wrapper object.
|
232
248
|
*/
|
@@ -317,7 +333,7 @@ declare namespace BedrockAgentRuntime {
|
|
317
333
|
*/
|
318
334
|
function?: String;
|
319
335
|
/**
|
320
|
-
* The response from the function call using the parameters. The response may be returned directly or from the Lambda function.
|
336
|
+
* The response from the function call using the parameters. The key of the object is the content type (currently, only TEXT is supported). The response may be returned directly or from the Lambda function.
|
321
337
|
*/
|
322
338
|
responseBody?: ResponseBody;
|
323
339
|
/**
|
@@ -332,12 +348,43 @@ declare namespace BedrockAgentRuntime {
|
|
332
348
|
textResponsePart?: TextResponsePart;
|
333
349
|
}
|
334
350
|
export interface GenerationConfiguration {
|
351
|
+
/**
|
352
|
+
* Additional model parameters and corresponding values not included in the textInferenceConfig structure for a knowledge base. This allows users to provide custom model parameters specific to the language model being used.
|
353
|
+
*/
|
354
|
+
additionalModelRequestFields?: AdditionalModelRequestFields;
|
355
|
+
/**
|
356
|
+
* The configuration details for the guardrail.
|
357
|
+
*/
|
358
|
+
guardrailConfiguration?: GuardrailConfiguration;
|
359
|
+
/**
|
360
|
+
* Configuration settings for inference when using RetrieveAndGenerate to generate responses while using a knowledge base as a source.
|
361
|
+
*/
|
362
|
+
inferenceConfig?: InferenceConfig;
|
335
363
|
/**
|
336
364
|
* Contains the template for the prompt that's sent to the model for response generation.
|
337
365
|
*/
|
338
366
|
promptTemplate?: PromptTemplate;
|
339
367
|
}
|
368
|
+
export type GuadrailAction = "INTERVENED"|"NONE"|string;
|
369
|
+
export interface GuardrailConfiguration {
|
370
|
+
/**
|
371
|
+
* The unique identifier for the guardrail.
|
372
|
+
*/
|
373
|
+
guardrailId: GuardrailConfigurationGuardrailIdString;
|
374
|
+
/**
|
375
|
+
* The version of the guardrail.
|
376
|
+
*/
|
377
|
+
guardrailVersion: GuardrailConfigurationGuardrailVersionString;
|
378
|
+
}
|
379
|
+
export type GuardrailConfigurationGuardrailIdString = string;
|
380
|
+
export type GuardrailConfigurationGuardrailVersionString = string;
|
340
381
|
export type Identifier = string;
|
382
|
+
export interface InferenceConfig {
|
383
|
+
/**
|
384
|
+
* Configuration settings specific to text generation while generating responses using RetrieveAndGenerate.
|
385
|
+
*/
|
386
|
+
textInferenceConfig?: TextInferenceConfig;
|
387
|
+
}
|
341
388
|
export interface InferenceConfiguration {
|
342
389
|
/**
|
343
390
|
* The maximum number of tokens allowed in the generated response.
|
@@ -423,7 +470,7 @@ declare namespace BedrockAgentRuntime {
|
|
423
470
|
*/
|
424
471
|
endSession?: Boolean;
|
425
472
|
/**
|
426
|
-
* The prompt text to send the agent.
|
473
|
+
* The prompt text to send the agent. If you include returnControlInvocationResults in the sessionState field, the inputText field will be ignored.
|
427
474
|
*/
|
428
475
|
inputText?: InputText;
|
429
476
|
/**
|
@@ -431,7 +478,7 @@ declare namespace BedrockAgentRuntime {
|
|
431
478
|
*/
|
432
479
|
sessionId: SessionId;
|
433
480
|
/**
|
434
|
-
* Contains parameters that specify various attributes of the session. For more information, see Control session context.
|
481
|
+
* Contains parameters that specify various attributes of the session. For more information, see Control session context. If you include returnControlInvocationResults in the sessionState field, the inputText field will be ignored.
|
435
482
|
*/
|
436
483
|
sessionState?: SessionState;
|
437
484
|
}
|
@@ -534,6 +581,7 @@ declare namespace BedrockAgentRuntime {
|
|
534
581
|
}
|
535
582
|
export type KnowledgeBaseVectorSearchConfigurationNumberOfResultsInteger = number;
|
536
583
|
export type LambdaArn = string;
|
584
|
+
export type MaxTokens = number;
|
537
585
|
export type MaximumLength = number;
|
538
586
|
export type MimeType = string;
|
539
587
|
export interface ModelInvocationInput {
|
@@ -711,6 +759,8 @@ declare namespace BedrockAgentRuntime {
|
|
711
759
|
*/
|
712
760
|
properties?: ParameterList;
|
713
761
|
}
|
762
|
+
export type RAGStopSequences = RAGStopSequencesMemberString[];
|
763
|
+
export type RAGStopSequencesMemberString = string;
|
714
764
|
export interface Rationale {
|
715
765
|
/**
|
716
766
|
* The reasoning or thought process of the agent, based on the input.
|
@@ -868,6 +918,10 @@ declare namespace BedrockAgentRuntime {
|
|
868
918
|
* A list of segments of the generated response that are based on sources in the knowledge base, alongside information about the sources.
|
869
919
|
*/
|
870
920
|
citations?: Citations;
|
921
|
+
/**
|
922
|
+
* Specifies if there is a guardrail intervention in the response.
|
923
|
+
*/
|
924
|
+
guardrailAction?: GuadrailAction;
|
871
925
|
/**
|
872
926
|
* Contains the response generated from querying the knowledge base.
|
873
927
|
*/
|
@@ -953,7 +1007,7 @@ declare namespace BedrockAgentRuntime {
|
|
953
1007
|
export type SessionId = string;
|
954
1008
|
export interface SessionState {
|
955
1009
|
/**
|
956
|
-
* The identifier of the invocation.
|
1010
|
+
* The identifier of the invocation of an action. This value must match the invocationId returned in the InvokeAgent response for the action whose results are provided in the returnControlInvocationResults field. For more information, see Return control to the agent developer and Control session context.
|
957
1011
|
*/
|
958
1012
|
invocationId?: String;
|
959
1013
|
/**
|
@@ -961,7 +1015,7 @@ declare namespace BedrockAgentRuntime {
|
|
961
1015
|
*/
|
962
1016
|
promptSessionAttributes?: PromptSessionAttributesMap;
|
963
1017
|
/**
|
964
|
-
* Contains information about the results from the action group invocation.
|
1018
|
+
* Contains information about the results from the action group invocation. For more information, see Return control to the agent developer and Control session context. If you include this field, the inputText field will be ignored.
|
965
1019
|
*/
|
966
1020
|
returnControlInvocationResults?: ReturnControlInvocationResults;
|
967
1021
|
/**
|
@@ -985,6 +1039,24 @@ declare namespace BedrockAgentRuntime {
|
|
985
1039
|
export type StopSequences = String[];
|
986
1040
|
export type String = string;
|
987
1041
|
export type Temperature = number;
|
1042
|
+
export interface TextInferenceConfig {
|
1043
|
+
/**
|
1044
|
+
* The maximum number of tokens to generate in the output text. Do not use the minimum of 0 or the maximum of 65536. The limit values described here are arbitary values, for actual values consult the limits defined by your specific model.
|
1045
|
+
*/
|
1046
|
+
maxTokens?: MaxTokens;
|
1047
|
+
/**
|
1048
|
+
* A list of sequences of characters that, if generated, will cause the model to stop generating further tokens. Do not use a minimum length of 1 or a maximum length of 1000. The limit values described here are arbitary values, for actual values consult the limits defined by your specific model.
|
1049
|
+
*/
|
1050
|
+
stopSequences?: RAGStopSequences;
|
1051
|
+
/**
|
1052
|
+
* Controls the random-ness of text generated by the language model, influencing how much the model sticks to the most predictable next words versus exploring more surprising options. A lower temperature value (e.g. 0.2 or 0.3) makes model outputs more deterministic or predictable, while a higher temperature (e.g. 0.8 or 0.9) makes the outputs more creative or unpredictable.
|
1053
|
+
*/
|
1054
|
+
temperature?: Temperature;
|
1055
|
+
/**
|
1056
|
+
* A probability distribution threshold which controls what the model considers for the set of possible next tokens. The model will only consider the top p% of the probability distribution when generating the next token.
|
1057
|
+
*/
|
1058
|
+
topP?: TopP;
|
1059
|
+
}
|
988
1060
|
export type TextPromptTemplate = string;
|
989
1061
|
export interface TextResponsePart {
|
990
1062
|
/**
|
@@ -44,11 +44,11 @@ declare class GreengrassV2 extends Service {
|
|
44
44
|
*/
|
45
45
|
cancelDeployment(callback?: (err: AWSError, data: GreengrassV2.Types.CancelDeploymentResponse) => void): Request<GreengrassV2.Types.CancelDeploymentResponse, AWSError>;
|
46
46
|
/**
|
47
|
-
* Creates a component. Components are software that run on Greengrass core devices. After you develop and test a component on your core device, you can use this operation to upload your component to IoT Greengrass. Then, you can deploy the component to other core devices. You can use this operation to do the following: Create components from recipes Create a component from a recipe, which is a file that defines the component's metadata, parameters, dependencies, lifecycle, artifacts, and platform capability. For more information, see IoT Greengrass component recipe reference in the IoT Greengrass V2 Developer Guide. To create a component from a recipe, specify inlineRecipe when you call this operation. Create components from Lambda functions Create a component from an Lambda function that runs on IoT Greengrass. This creates a recipe and artifacts from the Lambda function's deployment package. You can use this operation to migrate Lambda functions from IoT Greengrass V1 to IoT Greengrass V2. This function
|
47
|
+
* Creates a component. Components are software that run on Greengrass core devices. After you develop and test a component on your core device, you can use this operation to upload your component to IoT Greengrass. Then, you can deploy the component to other core devices. You can use this operation to do the following: Create components from recipes Create a component from a recipe, which is a file that defines the component's metadata, parameters, dependencies, lifecycle, artifacts, and platform capability. For more information, see IoT Greengrass component recipe reference in the IoT Greengrass V2 Developer Guide. To create a component from a recipe, specify inlineRecipe when you call this operation. Create components from Lambda functions Create a component from an Lambda function that runs on IoT Greengrass. This creates a recipe and artifacts from the Lambda function's deployment package. You can use this operation to migrate Lambda functions from IoT Greengrass V1 to IoT Greengrass V2. This function accepts Lambda functions in all supported versions of Python, Node.js, and Java runtimes. IoT Greengrass doesn't apply any additional restrictions on deprecated Lambda runtime versions. To create a component from a Lambda function, specify lambdaFunction when you call this operation. IoT Greengrass currently supports Lambda functions on only Linux core devices.
|
48
48
|
*/
|
49
49
|
createComponentVersion(params: GreengrassV2.Types.CreateComponentVersionRequest, callback?: (err: AWSError, data: GreengrassV2.Types.CreateComponentVersionResponse) => void): Request<GreengrassV2.Types.CreateComponentVersionResponse, AWSError>;
|
50
50
|
/**
|
51
|
-
* Creates a component. Components are software that run on Greengrass core devices. After you develop and test a component on your core device, you can use this operation to upload your component to IoT Greengrass. Then, you can deploy the component to other core devices. You can use this operation to do the following: Create components from recipes Create a component from a recipe, which is a file that defines the component's metadata, parameters, dependencies, lifecycle, artifacts, and platform capability. For more information, see IoT Greengrass component recipe reference in the IoT Greengrass V2 Developer Guide. To create a component from a recipe, specify inlineRecipe when you call this operation. Create components from Lambda functions Create a component from an Lambda function that runs on IoT Greengrass. This creates a recipe and artifacts from the Lambda function's deployment package. You can use this operation to migrate Lambda functions from IoT Greengrass V1 to IoT Greengrass V2. This function
|
51
|
+
* Creates a component. Components are software that run on Greengrass core devices. After you develop and test a component on your core device, you can use this operation to upload your component to IoT Greengrass. Then, you can deploy the component to other core devices. You can use this operation to do the following: Create components from recipes Create a component from a recipe, which is a file that defines the component's metadata, parameters, dependencies, lifecycle, artifacts, and platform capability. For more information, see IoT Greengrass component recipe reference in the IoT Greengrass V2 Developer Guide. To create a component from a recipe, specify inlineRecipe when you call this operation. Create components from Lambda functions Create a component from an Lambda function that runs on IoT Greengrass. This creates a recipe and artifacts from the Lambda function's deployment package. You can use this operation to migrate Lambda functions from IoT Greengrass V1 to IoT Greengrass V2. This function accepts Lambda functions in all supported versions of Python, Node.js, and Java runtimes. IoT Greengrass doesn't apply any additional restrictions on deprecated Lambda runtime versions. To create a component from a Lambda function, specify lambdaFunction when you call this operation. IoT Greengrass currently supports Lambda functions on only Linux core devices.
|
52
52
|
*/
|
53
53
|
createComponentVersion(callback?: (err: AWSError, data: GreengrassV2.Types.CreateComponentVersionResponse) => void): Request<GreengrassV2.Types.CreateComponentVersionResponse, AWSError>;
|
54
54
|
/**
|
@@ -418,7 +418,7 @@ declare namespace GreengrassV2 {
|
|
418
418
|
/**
|
419
419
|
* The version of the component.
|
420
420
|
*/
|
421
|
-
componentVersion
|
421
|
+
componentVersion: ComponentVersionString;
|
422
422
|
/**
|
423
423
|
* The configuration updates to deploy for the component. You can define reset updates and merge updates. A reset updates the keys that you specify to the default configuration for the component. A merge updates the core device's component configuration with the keys and values that you specify. The IoT Greengrass Core software applies reset updates before it applies merge updates. For more information, see Update component configurations in the IoT Greengrass V2 Developer Guide.
|
424
424
|
*/
|
@@ -905,6 +905,14 @@ declare namespace GreengrassV2 {
|
|
905
905
|
* The name of the artifact. You can use the GetComponent operation to download the component recipe, which includes the URI of the artifact. The artifact name is the section of the URI after the scheme. For example, in the artifact URI greengrass:SomeArtifact.zip, the artifact name is SomeArtifact.zip.
|
906
906
|
*/
|
907
907
|
artifactName: NonEmptyString;
|
908
|
+
/**
|
909
|
+
* Specifies the endpoint to use when getting Amazon S3 pre-signed URLs. All Amazon Web Services Regions except US East (N. Virginia) use REGIONAL in all cases. In the US East (N. Virginia) Region the default is GLOBAL, but you can change it to REGIONAL with this parameter.
|
910
|
+
*/
|
911
|
+
s3EndpointType?: S3EndpointType;
|
912
|
+
/**
|
913
|
+
* Determines if the Amazon S3 URL returned is a FIPS pre-signed URL endpoint. Specify fips if you want the returned Amazon S3 pre-signed URL to point to an Amazon S3 FIPS endpoint. If you don't specify a value, the default is standard.
|
914
|
+
*/
|
915
|
+
iotEndpointType?: IotEndpointType;
|
908
916
|
}
|
909
917
|
export interface GetComponentVersionArtifactResponse {
|
910
918
|
/**
|
@@ -1070,7 +1078,7 @@ declare namespace GreengrassV2 {
|
|
1070
1078
|
*/
|
1071
1079
|
lastReportedTimestamp?: Timestamp;
|
1072
1080
|
/**
|
1073
|
-
* The most recent deployment source that brought the component to the Greengrass core device. For a thing group deployment or thing deployment, the source will be the
|
1081
|
+
* The most recent deployment source that brought the component to the Greengrass core device. For a thing group deployment or thing deployment, the source will be the ID of the last deployment that contained the component. For local deployments it will be LOCAL. Any deployment will attempt to reinstall currently broken components on the device, which will update the last installation source.
|
1074
1082
|
*/
|
1075
1083
|
lastInstallationSource?: NonEmptyString;
|
1076
1084
|
/**
|
@@ -1160,6 +1168,7 @@ declare namespace GreengrassV2 {
|
|
1160
1168
|
inProgressTimeoutInMinutes?: IoTJobInProgressTimeoutInMinutes;
|
1161
1169
|
}
|
1162
1170
|
export type IoTThingName = string;
|
1171
|
+
export type IotEndpointType = "fips"|"standard"|string;
|
1163
1172
|
export type IsLatestForTarget = boolean;
|
1164
1173
|
export type IsRoot = boolean;
|
1165
1174
|
export interface LambdaContainerParams {
|
@@ -1429,7 +1438,7 @@ declare namespace GreengrassV2 {
|
|
1429
1438
|
*/
|
1430
1439
|
parentTargetArn?: ThingGroupARN;
|
1431
1440
|
/**
|
1432
|
-
* The maximum number of results to be returned per paginated request.
|
1441
|
+
* The maximum number of results to be returned per paginated request. Default: 50
|
1433
1442
|
*/
|
1434
1443
|
maxResults?: DefaultMaxResults;
|
1435
1444
|
/**
|
@@ -1566,6 +1575,7 @@ declare namespace GreengrassV2 {
|
|
1566
1575
|
message?: NonEmptyString;
|
1567
1576
|
}
|
1568
1577
|
export type ResolvedComponentVersionsList = ResolvedComponentVersion[];
|
1578
|
+
export type S3EndpointType = "REGIONAL"|"GLOBAL"|string;
|
1569
1579
|
export type String = string;
|
1570
1580
|
export type StringMap = {[key: string]: NonEmptyString};
|
1571
1581
|
export interface SystemResourceLimits {
|
package/clients/pinpoint.d.ts
CHANGED
@@ -2024,6 +2024,10 @@ declare namespace Pinpoint {
|
|
2024
2024
|
* The verified email address to send the email from. The default address is the FromAddress specified for the email channel for the application.
|
2025
2025
|
*/
|
2026
2026
|
FromAddress?: __string;
|
2027
|
+
/**
|
2028
|
+
* The list of MessageHeaders for the email. You can have up to 15 MessageHeaders for each email.
|
2029
|
+
*/
|
2030
|
+
Headers?: ListOfMessageHeader;
|
2027
2031
|
/**
|
2028
2032
|
* The body of the email, in HTML format, for recipients whose email clients render HTML content.
|
2029
2033
|
*/
|
@@ -3064,6 +3068,10 @@ declare namespace Pinpoint {
|
|
3064
3068
|
* The subject line, or title, to use in email messages that are based on the message template.
|
3065
3069
|
*/
|
3066
3070
|
Subject?: __string;
|
3071
|
+
/**
|
3072
|
+
* The list of MessageHeaders for the email. You can have up to 15 Headers.
|
3073
|
+
*/
|
3074
|
+
Headers?: ListOfMessageHeader;
|
3067
3075
|
/**
|
3068
3076
|
* As of 22-05-2023 tags has been deprecated for update operations. After this date any value in tags is not processed and an error code is not returned. To manage tags we recommend using either Tags in the API Reference for Amazon Pinpoint, resourcegroupstaggingapi commands in the AWS Command Line Interface Documentation or resourcegroupstaggingapi in the AWS SDK. (Deprecated) A string-to-string map of key-value pairs that defines the tags to associate with the message template. Each tag consists of a required tag key and an associated tag value.
|
3069
3077
|
*/
|
@@ -3106,6 +3114,10 @@ declare namespace Pinpoint {
|
|
3106
3114
|
* The subject line, or title, that's used in email messages that are based on the message template.
|
3107
3115
|
*/
|
3108
3116
|
Subject?: __string;
|
3117
|
+
/**
|
3118
|
+
* The list of MessageHeaders for the email. You can have up to 15 Headers.
|
3119
|
+
*/
|
3120
|
+
Headers?: ListOfMessageHeader;
|
3109
3121
|
/**
|
3110
3122
|
* A string-to-string map of key-value pairs that identifies the tags that are associated with the message template. Each tag consists of a required tag key and an associated tag value.
|
3111
3123
|
*/
|
@@ -6595,6 +6607,21 @@ declare namespace Pinpoint {
|
|
6595
6607
|
* The body of the email message, in plain text format. We recommend using plain text format for email clients that don't render HTML content and clients that are connected to high-latency networks, such as mobile devices.
|
6596
6608
|
*/
|
6597
6609
|
TextPart?: SimpleEmailPart;
|
6610
|
+
/**
|
6611
|
+
* The list of MessageHeaders for the email. You can have up to 15 Headers.
|
6612
|
+
*/
|
6613
|
+
Headers?: ListOfMessageHeader;
|
6614
|
+
}
|
6615
|
+
export type ListOfMessageHeader = MessageHeader[];
|
6616
|
+
export interface MessageHeader {
|
6617
|
+
/**
|
6618
|
+
* The name of the message header. The header name can contain up to 126 characters.
|
6619
|
+
*/
|
6620
|
+
Name?: __string;
|
6621
|
+
/**
|
6622
|
+
* The value of the message header. The header value can contain up to 870 characters, including the length of any rendered attributes. For example if you add the {CreationDate} attribute, it renders as YYYY-MM-DDTHH:MM:SS.SSSZ and is 24 characters in length.
|
6623
|
+
*/
|
6624
|
+
Value?: __string;
|
6598
6625
|
}
|
6599
6626
|
export interface SimpleEmailPart {
|
6600
6627
|
/**
|
@@ -737,7 +737,7 @@ declare namespace Route53Resolver {
|
|
737
737
|
*/
|
738
738
|
Name: Name;
|
739
739
|
/**
|
740
|
-
* How you want the the rule to evaluate DNS redirection in the DNS redirection chain, such as CNAME
|
740
|
+
* How you want the the rule to evaluate DNS redirection in the DNS redirection chain, such as CNAME or DNAME. Inspect_Redirection_Domain (Default) inspects all domains in the redirection chain. The individual domains in the redirection chain must be added to the domain list. Trust_Redirection_Domain inspects only the first domain in the redirection chain. You don't need to add the subsequent domains in the domain in the redirection list to the domain list.
|
741
741
|
*/
|
742
742
|
FirewallDomainRedirectionAction?: FirewallDomainRedirectionAction;
|
743
743
|
/**
|
@@ -1202,7 +1202,7 @@ declare namespace Route53Resolver {
|
|
1202
1202
|
*/
|
1203
1203
|
ModificationTime?: Rfc3339TimeString;
|
1204
1204
|
/**
|
1205
|
-
* How you want the the rule to evaluate DNS redirection in the DNS redirection chain, such as CNAME
|
1205
|
+
* How you want the the rule to evaluate DNS redirection in the DNS redirection chain, such as CNAME or DNAME. Inspect_Redirection_Domain (Default) inspects all domains in the redirection chain. The individual domains in the redirection chain must be added to the domain list. Trust_Redirection_Domain inspects only the first domain in the redirection chain. You don't need to add the subsequent domains in the domain in the redirection list to the domain list.
|
1206
1206
|
*/
|
1207
1207
|
FirewallDomainRedirectionAction?: FirewallDomainRedirectionAction;
|
1208
1208
|
/**
|
@@ -2646,7 +2646,7 @@ declare namespace Route53Resolver {
|
|
2646
2646
|
*/
|
2647
2647
|
Name?: Name;
|
2648
2648
|
/**
|
2649
|
-
* How you want the the rule to evaluate DNS redirection in the DNS redirection chain, such as CNAME
|
2649
|
+
* How you want the the rule to evaluate DNS redirection in the DNS redirection chain, such as CNAME or DNAME. Inspect_Redirection_Domain (Default) inspects all domains in the redirection chain. The individual domains in the redirection chain must be added to the domain list. Trust_Redirection_Domain inspects only the first domain in the redirection chain. You don't need to add the subsequent domains in the domain in the redirection list to the domain list.
|
2650
2650
|
*/
|
2651
2651
|
FirewallDomainRedirectionAction?: FirewallDomainRedirectionAction;
|
2652
2652
|
/**
|
package/clients/sagemaker.d.ts
CHANGED
@@ -3016,7 +3016,7 @@ declare namespace SageMaker {
|
|
3016
3016
|
export type AppImageConfigList = AppImageConfigDetails[];
|
3017
3017
|
export type AppImageConfigName = string;
|
3018
3018
|
export type AppImageConfigSortKey = "CreationTime"|"LastModifiedTime"|"Name"|string;
|
3019
|
-
export type AppInstanceType = "system"|"ml.t3.micro"|"ml.t3.small"|"ml.t3.medium"|"ml.t3.large"|"ml.t3.xlarge"|"ml.t3.2xlarge"|"ml.m5.large"|"ml.m5.xlarge"|"ml.m5.2xlarge"|"ml.m5.4xlarge"|"ml.m5.8xlarge"|"ml.m5.12xlarge"|"ml.m5.16xlarge"|"ml.m5.24xlarge"|"ml.m5d.large"|"ml.m5d.xlarge"|"ml.m5d.2xlarge"|"ml.m5d.4xlarge"|"ml.m5d.8xlarge"|"ml.m5d.12xlarge"|"ml.m5d.16xlarge"|"ml.m5d.24xlarge"|"ml.c5.large"|"ml.c5.xlarge"|"ml.c5.2xlarge"|"ml.c5.4xlarge"|"ml.c5.9xlarge"|"ml.c5.12xlarge"|"ml.c5.18xlarge"|"ml.c5.24xlarge"|"ml.p3.2xlarge"|"ml.p3.8xlarge"|"ml.p3.16xlarge"|"ml.p3dn.24xlarge"|"ml.g4dn.xlarge"|"ml.g4dn.2xlarge"|"ml.g4dn.4xlarge"|"ml.g4dn.8xlarge"|"ml.g4dn.12xlarge"|"ml.g4dn.16xlarge"|"ml.r5.large"|"ml.r5.xlarge"|"ml.r5.2xlarge"|"ml.r5.4xlarge"|"ml.r5.8xlarge"|"ml.r5.12xlarge"|"ml.r5.16xlarge"|"ml.r5.24xlarge"|"ml.g5.xlarge"|"ml.g5.2xlarge"|"ml.g5.4xlarge"|"ml.g5.8xlarge"|"ml.g5.16xlarge"|"ml.g5.12xlarge"|"ml.g5.24xlarge"|"ml.g5.48xlarge"|"ml.geospatial.interactive"|"ml.p4d.24xlarge"|"ml.p4de.24xlarge"|"ml.trn1.2xlarge"|"ml.trn1.32xlarge"|"ml.trn1n.32xlarge"|"ml.p5.48xlarge"|"ml.m6i.large"|"ml.m6i.xlarge"|"ml.m6i.2xlarge"|"ml.m6i.4xlarge"|"ml.m6i.8xlarge"|"ml.m6i.12xlarge"|"ml.m6i.16xlarge"|"ml.m6i.24xlarge"|"ml.m6i.32xlarge"|"ml.m7i.large"|"ml.m7i.xlarge"|"ml.m7i.2xlarge"|"ml.m7i.4xlarge"|"ml.m7i.8xlarge"|"ml.m7i.12xlarge"|"ml.m7i.16xlarge"|"ml.m7i.24xlarge"|"ml.m7i.48xlarge"|"ml.c6i.large"|"ml.c6i.xlarge"|"ml.c6i.2xlarge"|"ml.c6i.4xlarge"|"ml.c6i.8xlarge"|"ml.c6i.12xlarge"|"ml.c6i.16xlarge"|"ml.c6i.24xlarge"|"ml.c6i.32xlarge"|"ml.c7i.large"|"ml.c7i.xlarge"|"ml.c7i.2xlarge"|"ml.c7i.4xlarge"|"ml.c7i.8xlarge"|"ml.c7i.12xlarge"|"ml.c7i.16xlarge"|"ml.c7i.24xlarge"|"ml.c7i.48xlarge"|"ml.r6i.large"|"ml.r6i.xlarge"|"ml.r6i.2xlarge"|"ml.r6i.4xlarge"|"ml.r6i.8xlarge"|"ml.r6i.12xlarge"|"ml.r6i.16xlarge"|"ml.r6i.24xlarge"|"ml.r6i.32xlarge"|"ml.r7i.large"|"ml.r7i.xlarge"|"ml.r7i.2xlarge"|"ml.r7i.4xlarge"|"ml.r7i.8xlarge"|"ml.r7i.12xlarge"|"ml.r7i.16xlarge"|"ml.r7i.24xlarge"|"ml.r7i.48xlarge"|"ml.m6id.large"|"ml.m6id.xlarge"|"ml.m6id.2xlarge"|"ml.m6id.4xlarge"|"ml.m6id.8xlarge"|"ml.m6id.12xlarge"|"ml.m6id.16xlarge"|"ml.m6id.24xlarge"|"ml.m6id.32xlarge"|"ml.c6id.large"|"ml.c6id.xlarge"|"ml.c6id.2xlarge"|"ml.c6id.4xlarge"|"ml.c6id.8xlarge"|"ml.c6id.12xlarge"|"ml.c6id.16xlarge"|"ml.c6id.24xlarge"|"ml.c6id.32xlarge"|"ml.r6id.large"|"ml.r6id.xlarge"|"ml.r6id.2xlarge"|"ml.r6id.4xlarge"|"ml.r6id.8xlarge"|"ml.r6id.12xlarge"|"ml.r6id.16xlarge"|"ml.r6id.24xlarge"|"ml.r6id.32xlarge"|string;
|
3019
|
+
export type AppInstanceType = "system"|"ml.t3.micro"|"ml.t3.small"|"ml.t3.medium"|"ml.t3.large"|"ml.t3.xlarge"|"ml.t3.2xlarge"|"ml.m5.large"|"ml.m5.xlarge"|"ml.m5.2xlarge"|"ml.m5.4xlarge"|"ml.m5.8xlarge"|"ml.m5.12xlarge"|"ml.m5.16xlarge"|"ml.m5.24xlarge"|"ml.m5d.large"|"ml.m5d.xlarge"|"ml.m5d.2xlarge"|"ml.m5d.4xlarge"|"ml.m5d.8xlarge"|"ml.m5d.12xlarge"|"ml.m5d.16xlarge"|"ml.m5d.24xlarge"|"ml.c5.large"|"ml.c5.xlarge"|"ml.c5.2xlarge"|"ml.c5.4xlarge"|"ml.c5.9xlarge"|"ml.c5.12xlarge"|"ml.c5.18xlarge"|"ml.c5.24xlarge"|"ml.p3.2xlarge"|"ml.p3.8xlarge"|"ml.p3.16xlarge"|"ml.p3dn.24xlarge"|"ml.g4dn.xlarge"|"ml.g4dn.2xlarge"|"ml.g4dn.4xlarge"|"ml.g4dn.8xlarge"|"ml.g4dn.12xlarge"|"ml.g4dn.16xlarge"|"ml.r5.large"|"ml.r5.xlarge"|"ml.r5.2xlarge"|"ml.r5.4xlarge"|"ml.r5.8xlarge"|"ml.r5.12xlarge"|"ml.r5.16xlarge"|"ml.r5.24xlarge"|"ml.g5.xlarge"|"ml.g5.2xlarge"|"ml.g5.4xlarge"|"ml.g5.8xlarge"|"ml.g5.16xlarge"|"ml.g5.12xlarge"|"ml.g5.24xlarge"|"ml.g5.48xlarge"|"ml.g6.xlarge"|"ml.g6.2xlarge"|"ml.g6.4xlarge"|"ml.g6.8xlarge"|"ml.g6.12xlarge"|"ml.g6.16xlarge"|"ml.g6.24xlarge"|"ml.g6.48xlarge"|"ml.geospatial.interactive"|"ml.p4d.24xlarge"|"ml.p4de.24xlarge"|"ml.trn1.2xlarge"|"ml.trn1.32xlarge"|"ml.trn1n.32xlarge"|"ml.p5.48xlarge"|"ml.m6i.large"|"ml.m6i.xlarge"|"ml.m6i.2xlarge"|"ml.m6i.4xlarge"|"ml.m6i.8xlarge"|"ml.m6i.12xlarge"|"ml.m6i.16xlarge"|"ml.m6i.24xlarge"|"ml.m6i.32xlarge"|"ml.m7i.large"|"ml.m7i.xlarge"|"ml.m7i.2xlarge"|"ml.m7i.4xlarge"|"ml.m7i.8xlarge"|"ml.m7i.12xlarge"|"ml.m7i.16xlarge"|"ml.m7i.24xlarge"|"ml.m7i.48xlarge"|"ml.c6i.large"|"ml.c6i.xlarge"|"ml.c6i.2xlarge"|"ml.c6i.4xlarge"|"ml.c6i.8xlarge"|"ml.c6i.12xlarge"|"ml.c6i.16xlarge"|"ml.c6i.24xlarge"|"ml.c6i.32xlarge"|"ml.c7i.large"|"ml.c7i.xlarge"|"ml.c7i.2xlarge"|"ml.c7i.4xlarge"|"ml.c7i.8xlarge"|"ml.c7i.12xlarge"|"ml.c7i.16xlarge"|"ml.c7i.24xlarge"|"ml.c7i.48xlarge"|"ml.r6i.large"|"ml.r6i.xlarge"|"ml.r6i.2xlarge"|"ml.r6i.4xlarge"|"ml.r6i.8xlarge"|"ml.r6i.12xlarge"|"ml.r6i.16xlarge"|"ml.r6i.24xlarge"|"ml.r6i.32xlarge"|"ml.r7i.large"|"ml.r7i.xlarge"|"ml.r7i.2xlarge"|"ml.r7i.4xlarge"|"ml.r7i.8xlarge"|"ml.r7i.12xlarge"|"ml.r7i.16xlarge"|"ml.r7i.24xlarge"|"ml.r7i.48xlarge"|"ml.m6id.large"|"ml.m6id.xlarge"|"ml.m6id.2xlarge"|"ml.m6id.4xlarge"|"ml.m6id.8xlarge"|"ml.m6id.12xlarge"|"ml.m6id.16xlarge"|"ml.m6id.24xlarge"|"ml.m6id.32xlarge"|"ml.c6id.large"|"ml.c6id.xlarge"|"ml.c6id.2xlarge"|"ml.c6id.4xlarge"|"ml.c6id.8xlarge"|"ml.c6id.12xlarge"|"ml.c6id.16xlarge"|"ml.c6id.24xlarge"|"ml.c6id.32xlarge"|"ml.r6id.large"|"ml.r6id.xlarge"|"ml.r6id.2xlarge"|"ml.r6id.4xlarge"|"ml.r6id.8xlarge"|"ml.r6id.12xlarge"|"ml.r6id.16xlarge"|"ml.r6id.24xlarge"|"ml.r6id.32xlarge"|string;
|
3020
3020
|
export type AppList = AppDetails[];
|
3021
3021
|
export type AppManaged = boolean;
|
3022
3022
|
export type AppName = string;
|
@@ -13708,7 +13708,7 @@ declare namespace SageMaker {
|
|
13708
13708
|
*/
|
13709
13709
|
MinimumInstanceMetadataServiceVersion: MinimumInstanceMetadataServiceVersion;
|
13710
13710
|
}
|
13711
|
-
export type InstanceType = "ml.t2.medium"|"ml.t2.large"|"ml.t2.xlarge"|"ml.t2.2xlarge"|"ml.t3.medium"|"ml.t3.large"|"ml.t3.xlarge"|"ml.t3.2xlarge"|"ml.m4.xlarge"|"ml.m4.2xlarge"|"ml.m4.4xlarge"|"ml.m4.10xlarge"|"ml.m4.16xlarge"|"ml.m5.xlarge"|"ml.m5.2xlarge"|"ml.m5.4xlarge"|"ml.m5.12xlarge"|"ml.m5.24xlarge"|"ml.m5d.large"|"ml.m5d.xlarge"|"ml.m5d.2xlarge"|"ml.m5d.4xlarge"|"ml.m5d.8xlarge"|"ml.m5d.12xlarge"|"ml.m5d.16xlarge"|"ml.m5d.24xlarge"|"ml.c4.xlarge"|"ml.c4.2xlarge"|"ml.c4.4xlarge"|"ml.c4.8xlarge"|"ml.c5.xlarge"|"ml.c5.2xlarge"|"ml.c5.4xlarge"|"ml.c5.9xlarge"|"ml.c5.18xlarge"|"ml.c5d.xlarge"|"ml.c5d.2xlarge"|"ml.c5d.4xlarge"|"ml.c5d.9xlarge"|"ml.c5d.18xlarge"|"ml.p2.xlarge"|"ml.p2.8xlarge"|"ml.p2.16xlarge"|"ml.p3.2xlarge"|"ml.p3.8xlarge"|"ml.p3.16xlarge"|"ml.p3dn.24xlarge"|"ml.g4dn.xlarge"|"ml.g4dn.2xlarge"|"ml.g4dn.4xlarge"|"ml.g4dn.8xlarge"|"ml.g4dn.12xlarge"|"ml.g4dn.16xlarge"|"ml.r5.large"|"ml.r5.xlarge"|"ml.r5.2xlarge"|"ml.r5.4xlarge"|"ml.r5.8xlarge"|"ml.r5.12xlarge"|"ml.r5.16xlarge"|"ml.r5.24xlarge"|"ml.g5.xlarge"|"ml.g5.2xlarge"|"ml.g5.4xlarge"|"ml.g5.8xlarge"|"ml.g5.16xlarge"|"ml.g5.12xlarge"|"ml.g5.24xlarge"|"ml.g5.48xlarge"|"ml.inf1.xlarge"|"ml.inf1.2xlarge"|"ml.inf1.6xlarge"|"ml.inf1.24xlarge"|"ml.p4d.24xlarge"|"ml.p4de.24xlarge"|"ml.p5.48xlarge"|"ml.m6i.large"|"ml.m6i.xlarge"|"ml.m6i.2xlarge"|"ml.m6i.4xlarge"|"ml.m6i.8xlarge"|"ml.m6i.12xlarge"|"ml.m6i.16xlarge"|"ml.m6i.24xlarge"|"ml.m6i.32xlarge"|"ml.m7i.large"|"ml.m7i.xlarge"|"ml.m7i.2xlarge"|"ml.m7i.4xlarge"|"ml.m7i.8xlarge"|"ml.m7i.12xlarge"|"ml.m7i.16xlarge"|"ml.m7i.24xlarge"|"ml.m7i.48xlarge"|"ml.c6i.large"|"ml.c6i.xlarge"|"ml.c6i.2xlarge"|"ml.c6i.4xlarge"|"ml.c6i.8xlarge"|"ml.c6i.12xlarge"|"ml.c6i.16xlarge"|"ml.c6i.24xlarge"|"ml.c6i.32xlarge"|"ml.c7i.large"|"ml.c7i.xlarge"|"ml.c7i.2xlarge"|"ml.c7i.4xlarge"|"ml.c7i.8xlarge"|"ml.c7i.12xlarge"|"ml.c7i.16xlarge"|"ml.c7i.24xlarge"|"ml.c7i.48xlarge"|"ml.r6i.large"|"ml.r6i.xlarge"|"ml.r6i.2xlarge"|"ml.r6i.4xlarge"|"ml.r6i.8xlarge"|"ml.r6i.12xlarge"|"ml.r6i.16xlarge"|"ml.r6i.24xlarge"|"ml.r6i.32xlarge"|"ml.r7i.large"|"ml.r7i.xlarge"|"ml.r7i.2xlarge"|"ml.r7i.4xlarge"|"ml.r7i.8xlarge"|"ml.r7i.12xlarge"|"ml.r7i.16xlarge"|"ml.r7i.24xlarge"|"ml.r7i.48xlarge"|"ml.m6id.large"|"ml.m6id.xlarge"|"ml.m6id.2xlarge"|"ml.m6id.4xlarge"|"ml.m6id.8xlarge"|"ml.m6id.12xlarge"|"ml.m6id.16xlarge"|"ml.m6id.24xlarge"|"ml.m6id.32xlarge"|"ml.c6id.large"|"ml.c6id.xlarge"|"ml.c6id.2xlarge"|"ml.c6id.4xlarge"|"ml.c6id.8xlarge"|"ml.c6id.12xlarge"|"ml.c6id.16xlarge"|"ml.c6id.24xlarge"|"ml.c6id.32xlarge"|"ml.r6id.large"|"ml.r6id.xlarge"|"ml.r6id.2xlarge"|"ml.r6id.4xlarge"|"ml.r6id.8xlarge"|"ml.r6id.12xlarge"|"ml.r6id.16xlarge"|"ml.r6id.24xlarge"|"ml.r6id.32xlarge"|string;
|
13711
|
+
export type InstanceType = "ml.t2.medium"|"ml.t2.large"|"ml.t2.xlarge"|"ml.t2.2xlarge"|"ml.t3.medium"|"ml.t3.large"|"ml.t3.xlarge"|"ml.t3.2xlarge"|"ml.m4.xlarge"|"ml.m4.2xlarge"|"ml.m4.4xlarge"|"ml.m4.10xlarge"|"ml.m4.16xlarge"|"ml.m5.xlarge"|"ml.m5.2xlarge"|"ml.m5.4xlarge"|"ml.m5.12xlarge"|"ml.m5.24xlarge"|"ml.m5d.large"|"ml.m5d.xlarge"|"ml.m5d.2xlarge"|"ml.m5d.4xlarge"|"ml.m5d.8xlarge"|"ml.m5d.12xlarge"|"ml.m5d.16xlarge"|"ml.m5d.24xlarge"|"ml.c4.xlarge"|"ml.c4.2xlarge"|"ml.c4.4xlarge"|"ml.c4.8xlarge"|"ml.c5.xlarge"|"ml.c5.2xlarge"|"ml.c5.4xlarge"|"ml.c5.9xlarge"|"ml.c5.18xlarge"|"ml.c5d.xlarge"|"ml.c5d.2xlarge"|"ml.c5d.4xlarge"|"ml.c5d.9xlarge"|"ml.c5d.18xlarge"|"ml.p2.xlarge"|"ml.p2.8xlarge"|"ml.p2.16xlarge"|"ml.p3.2xlarge"|"ml.p3.8xlarge"|"ml.p3.16xlarge"|"ml.p3dn.24xlarge"|"ml.g4dn.xlarge"|"ml.g4dn.2xlarge"|"ml.g4dn.4xlarge"|"ml.g4dn.8xlarge"|"ml.g4dn.12xlarge"|"ml.g4dn.16xlarge"|"ml.r5.large"|"ml.r5.xlarge"|"ml.r5.2xlarge"|"ml.r5.4xlarge"|"ml.r5.8xlarge"|"ml.r5.12xlarge"|"ml.r5.16xlarge"|"ml.r5.24xlarge"|"ml.g5.xlarge"|"ml.g5.2xlarge"|"ml.g5.4xlarge"|"ml.g5.8xlarge"|"ml.g5.16xlarge"|"ml.g5.12xlarge"|"ml.g5.24xlarge"|"ml.g5.48xlarge"|"ml.inf1.xlarge"|"ml.inf1.2xlarge"|"ml.inf1.6xlarge"|"ml.inf1.24xlarge"|"ml.p4d.24xlarge"|"ml.p4de.24xlarge"|"ml.p5.48xlarge"|"ml.m6i.large"|"ml.m6i.xlarge"|"ml.m6i.2xlarge"|"ml.m6i.4xlarge"|"ml.m6i.8xlarge"|"ml.m6i.12xlarge"|"ml.m6i.16xlarge"|"ml.m6i.24xlarge"|"ml.m6i.32xlarge"|"ml.m7i.large"|"ml.m7i.xlarge"|"ml.m7i.2xlarge"|"ml.m7i.4xlarge"|"ml.m7i.8xlarge"|"ml.m7i.12xlarge"|"ml.m7i.16xlarge"|"ml.m7i.24xlarge"|"ml.m7i.48xlarge"|"ml.c6i.large"|"ml.c6i.xlarge"|"ml.c6i.2xlarge"|"ml.c6i.4xlarge"|"ml.c6i.8xlarge"|"ml.c6i.12xlarge"|"ml.c6i.16xlarge"|"ml.c6i.24xlarge"|"ml.c6i.32xlarge"|"ml.c7i.large"|"ml.c7i.xlarge"|"ml.c7i.2xlarge"|"ml.c7i.4xlarge"|"ml.c7i.8xlarge"|"ml.c7i.12xlarge"|"ml.c7i.16xlarge"|"ml.c7i.24xlarge"|"ml.c7i.48xlarge"|"ml.r6i.large"|"ml.r6i.xlarge"|"ml.r6i.2xlarge"|"ml.r6i.4xlarge"|"ml.r6i.8xlarge"|"ml.r6i.12xlarge"|"ml.r6i.16xlarge"|"ml.r6i.24xlarge"|"ml.r6i.32xlarge"|"ml.r7i.large"|"ml.r7i.xlarge"|"ml.r7i.2xlarge"|"ml.r7i.4xlarge"|"ml.r7i.8xlarge"|"ml.r7i.12xlarge"|"ml.r7i.16xlarge"|"ml.r7i.24xlarge"|"ml.r7i.48xlarge"|"ml.m6id.large"|"ml.m6id.xlarge"|"ml.m6id.2xlarge"|"ml.m6id.4xlarge"|"ml.m6id.8xlarge"|"ml.m6id.12xlarge"|"ml.m6id.16xlarge"|"ml.m6id.24xlarge"|"ml.m6id.32xlarge"|"ml.c6id.large"|"ml.c6id.xlarge"|"ml.c6id.2xlarge"|"ml.c6id.4xlarge"|"ml.c6id.8xlarge"|"ml.c6id.12xlarge"|"ml.c6id.16xlarge"|"ml.c6id.24xlarge"|"ml.c6id.32xlarge"|"ml.r6id.large"|"ml.r6id.xlarge"|"ml.r6id.2xlarge"|"ml.r6id.4xlarge"|"ml.r6id.8xlarge"|"ml.r6id.12xlarge"|"ml.r6id.16xlarge"|"ml.r6id.24xlarge"|"ml.r6id.32xlarge"|"ml.g6.xlarge"|"ml.g6.2xlarge"|"ml.g6.4xlarge"|"ml.g6.8xlarge"|"ml.g6.12xlarge"|"ml.g6.16xlarge"|"ml.g6.24xlarge"|"ml.g6.48xlarge"|string;
|
13712
13712
|
export type Integer = number;
|
13713
13713
|
export interface IntegerParameterRange {
|
13714
13714
|
/**
|
package/clients/ssmsap.d.ts
CHANGED
@@ -91,6 +91,14 @@ declare class SsmSap extends Service {
|
|
91
91
|
* Lists the SAP HANA databases of an application registered with AWS Systems Manager for SAP.
|
92
92
|
*/
|
93
93
|
listDatabases(callback?: (err: AWSError, data: SsmSap.Types.ListDatabasesOutput) => void): Request<SsmSap.Types.ListDatabasesOutput, AWSError>;
|
94
|
+
/**
|
95
|
+
* Returns a list of operations events. Available parameters include OperationID, as well as optional parameters MaxResults, NextToken, and Filters.
|
96
|
+
*/
|
97
|
+
listOperationEvents(params: SsmSap.Types.ListOperationEventsInput, callback?: (err: AWSError, data: SsmSap.Types.ListOperationEventsOutput) => void): Request<SsmSap.Types.ListOperationEventsOutput, AWSError>;
|
98
|
+
/**
|
99
|
+
* Returns a list of operations events. Available parameters include OperationID, as well as optional parameters MaxResults, NextToken, and Filters.
|
100
|
+
*/
|
101
|
+
listOperationEvents(callback?: (err: AWSError, data: SsmSap.Types.ListOperationEventsOutput) => void): Request<SsmSap.Types.ListOperationEventsOutput, AWSError>;
|
94
102
|
/**
|
95
103
|
* Lists the operations performed by AWS Systems Manager for SAP.
|
96
104
|
*/
|
@@ -123,6 +131,14 @@ declare class SsmSap extends Service {
|
|
123
131
|
* Register an SAP application with AWS Systems Manager for SAP. You must meet the following requirements before registering. The SAP application you want to register with AWS Systems Manager for SAP is running on Amazon EC2. AWS Systems Manager Agent must be setup on an Amazon EC2 instance along with the required IAM permissions. Amazon EC2 instance(s) must have access to the secrets created in AWS Secrets Manager to manage SAP applications and components.
|
124
132
|
*/
|
125
133
|
registerApplication(callback?: (err: AWSError, data: SsmSap.Types.RegisterApplicationOutput) => void): Request<SsmSap.Types.RegisterApplicationOutput, AWSError>;
|
134
|
+
/**
|
135
|
+
* Request is an operation which starts an application. Parameter ApplicationId is required.
|
136
|
+
*/
|
137
|
+
startApplication(params: SsmSap.Types.StartApplicationInput, callback?: (err: AWSError, data: SsmSap.Types.StartApplicationOutput) => void): Request<SsmSap.Types.StartApplicationOutput, AWSError>;
|
138
|
+
/**
|
139
|
+
* Request is an operation which starts an application. Parameter ApplicationId is required.
|
140
|
+
*/
|
141
|
+
startApplication(callback?: (err: AWSError, data: SsmSap.Types.StartApplicationOutput) => void): Request<SsmSap.Types.StartApplicationOutput, AWSError>;
|
126
142
|
/**
|
127
143
|
* Refreshes a registered application.
|
128
144
|
*/
|
@@ -131,6 +147,14 @@ declare class SsmSap extends Service {
|
|
131
147
|
* Refreshes a registered application.
|
132
148
|
*/
|
133
149
|
startApplicationRefresh(callback?: (err: AWSError, data: SsmSap.Types.StartApplicationRefreshOutput) => void): Request<SsmSap.Types.StartApplicationRefreshOutput, AWSError>;
|
150
|
+
/**
|
151
|
+
* Request is an operation to stop an application. Parameter ApplicationId is required. Parameters StopConnectedEntity and IncludeEc2InstanceShutdown are optional.
|
152
|
+
*/
|
153
|
+
stopApplication(params: SsmSap.Types.StopApplicationInput, callback?: (err: AWSError, data: SsmSap.Types.StopApplicationOutput) => void): Request<SsmSap.Types.StopApplicationOutput, AWSError>;
|
154
|
+
/**
|
155
|
+
* Request is an operation to stop an application. Parameter ApplicationId is required. Parameters StopConnectedEntity and IncludeEc2InstanceShutdown are optional.
|
156
|
+
*/
|
157
|
+
stopApplication(callback?: (err: AWSError, data: SsmSap.Types.StopApplicationOutput) => void): Request<SsmSap.Types.StopApplicationOutput, AWSError>;
|
134
158
|
/**
|
135
159
|
* Creates tag for a resource by specifying the ARN.
|
136
160
|
*/
|
@@ -380,6 +404,7 @@ declare namespace SsmSap {
|
|
380
404
|
}
|
381
405
|
export type ComponentSummaryList = ComponentSummary[];
|
382
406
|
export type ComponentType = "HANA"|"HANA_NODE"|"ABAP"|"ASCS"|"DIALOG"|"WEBDISP"|"WD"|"ERS"|string;
|
407
|
+
export type ConnectedEntityType = "DBMS"|string;
|
383
408
|
export type CredentialType = "ADMIN"|string;
|
384
409
|
export interface Database {
|
385
410
|
/**
|
@@ -672,7 +697,7 @@ declare namespace SsmSap {
|
|
672
697
|
*/
|
673
698
|
NextToken?: NextToken;
|
674
699
|
/**
|
675
|
-
* The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.
|
700
|
+
* The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.
|
676
701
|
*/
|
677
702
|
MaxResults?: MaxResults;
|
678
703
|
/**
|
@@ -742,6 +767,34 @@ declare namespace SsmSap {
|
|
742
767
|
*/
|
743
768
|
NextToken?: NextToken;
|
744
769
|
}
|
770
|
+
export interface ListOperationEventsInput {
|
771
|
+
/**
|
772
|
+
* The ID of the operation.
|
773
|
+
*/
|
774
|
+
OperationId: OperationId;
|
775
|
+
/**
|
776
|
+
* The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value. If you do not specify a value for MaxResults, the request returns 50 items per page by default.
|
777
|
+
*/
|
778
|
+
MaxResults?: MaxResults;
|
779
|
+
/**
|
780
|
+
* The token to use to retrieve the next page of results. This value is null when there are no more results to return.
|
781
|
+
*/
|
782
|
+
NextToken?: NextToken;
|
783
|
+
/**
|
784
|
+
* Optionally specify filters to narrow the returned operation event items. Valid filter names include status, resourceID, and resourceType. The valid operator for all three filters is Equals.
|
785
|
+
*/
|
786
|
+
Filters?: FilterList;
|
787
|
+
}
|
788
|
+
export interface ListOperationEventsOutput {
|
789
|
+
/**
|
790
|
+
* A returned list of operation events that meet the filter criteria.
|
791
|
+
*/
|
792
|
+
OperationEvents?: OperationEventList;
|
793
|
+
/**
|
794
|
+
* The token to use to retrieve the next page of results. This value is null when there are no more results to return.
|
795
|
+
*/
|
796
|
+
NextToken?: NextToken;
|
797
|
+
}
|
745
798
|
export interface ListOperationsInput {
|
746
799
|
/**
|
747
800
|
* The ID of the application.
|
@@ -830,6 +883,31 @@ declare namespace SsmSap {
|
|
830
883
|
*/
|
831
884
|
LastUpdatedTime?: Timestamp;
|
832
885
|
}
|
886
|
+
export interface OperationEvent {
|
887
|
+
/**
|
888
|
+
* A description of the operation event. For example, "Stop the EC2 instance i-abcdefgh987654321".
|
889
|
+
*/
|
890
|
+
Description?: String;
|
891
|
+
/**
|
892
|
+
* The resource involved in the operations event. Contains ResourceArn ARN and ResourceType.
|
893
|
+
*/
|
894
|
+
Resource?: Resource;
|
895
|
+
/**
|
896
|
+
* The status of the operation event. The possible statuses are: IN_PROGRESS, COMPLETED, and FAILED.
|
897
|
+
*/
|
898
|
+
Status?: OperationEventStatus;
|
899
|
+
/**
|
900
|
+
* The status message relating to a specific operation event.
|
901
|
+
*/
|
902
|
+
StatusMessage?: String;
|
903
|
+
/**
|
904
|
+
* The timestamp of the specified operation event.
|
905
|
+
*/
|
906
|
+
Timestamp?: Timestamp;
|
907
|
+
}
|
908
|
+
export type OperationEventList = OperationEvent[];
|
909
|
+
export type OperationEventResourceType = string;
|
910
|
+
export type OperationEventStatus = "IN_PROGRESS"|"COMPLETED"|"FAILED"|string;
|
833
911
|
export type OperationId = string;
|
834
912
|
export type OperationIdList = OperationId[];
|
835
913
|
export type OperationList = Operation[];
|
@@ -925,12 +1003,34 @@ declare namespace SsmSap {
|
|
925
1003
|
*/
|
926
1004
|
EnqueueReplication?: Boolean;
|
927
1005
|
}
|
1006
|
+
export interface Resource {
|
1007
|
+
/**
|
1008
|
+
* The Amazon Resource Name (ARN) of the source resource. Example of ResourceArn: "arn:aws:ec2:us-east-1:111111111111:instance/i-abcdefgh987654321"
|
1009
|
+
*/
|
1010
|
+
ResourceArn?: Arn;
|
1011
|
+
/**
|
1012
|
+
* The resource type. Example of ResourceType: "AWS::SystemsManagerSAP::Component" or "AWS::EC2::Instance".
|
1013
|
+
*/
|
1014
|
+
ResourceType?: OperationEventResourceType;
|
1015
|
+
}
|
928
1016
|
export type ResourceId = string;
|
929
1017
|
export type ResourceType = string;
|
930
1018
|
export type SAPInstanceNumber = string;
|
931
1019
|
export type SID = string;
|
932
1020
|
export type SecretId = string;
|
933
1021
|
export type SsmSapArn = string;
|
1022
|
+
export interface StartApplicationInput {
|
1023
|
+
/**
|
1024
|
+
* The ID of the application.
|
1025
|
+
*/
|
1026
|
+
ApplicationId: ApplicationId;
|
1027
|
+
}
|
1028
|
+
export interface StartApplicationOutput {
|
1029
|
+
/**
|
1030
|
+
* The ID of the operation.
|
1031
|
+
*/
|
1032
|
+
OperationId?: OperationId;
|
1033
|
+
}
|
934
1034
|
export interface StartApplicationRefreshInput {
|
935
1035
|
/**
|
936
1036
|
* The ID of the application.
|
@@ -943,6 +1043,26 @@ declare namespace SsmSap {
|
|
943
1043
|
*/
|
944
1044
|
OperationId?: OperationId;
|
945
1045
|
}
|
1046
|
+
export interface StopApplicationInput {
|
1047
|
+
/**
|
1048
|
+
* The ID of the application.
|
1049
|
+
*/
|
1050
|
+
ApplicationId: ApplicationId;
|
1051
|
+
/**
|
1052
|
+
* Specify the ConnectedEntityType. Accepted type is DBMS. If this parameter is included, the connected DBMS (Database Management System) will be stopped.
|
1053
|
+
*/
|
1054
|
+
StopConnectedEntity?: ConnectedEntityType;
|
1055
|
+
/**
|
1056
|
+
* Boolean. If included and if set to True, the StopApplication operation will shut down the associated Amazon EC2 instance in addition to the application.
|
1057
|
+
*/
|
1058
|
+
IncludeEc2InstanceShutdown?: Boolean;
|
1059
|
+
}
|
1060
|
+
export interface StopApplicationOutput {
|
1061
|
+
/**
|
1062
|
+
* The ID of the operation.
|
1063
|
+
*/
|
1064
|
+
OperationId?: OperationId;
|
1065
|
+
}
|
946
1066
|
export type String = string;
|
947
1067
|
export type TagKey = string;
|
948
1068
|
export type TagKeyList = TagKey[];
|