aws-sdk 2.1630.0 → 2.1632.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/acm-2015-12-08.min.json +3 -0
- package/apis/bedrock-agent-2023-06-05.min.json +28 -15
- package/apis/bedrock-runtime-2023-09-30.min.json +514 -44
- package/apis/cloudtrail-2013-11-01.min.json +40 -23
- package/apis/codeguru-security-2018-05-10.min.json +6 -0
- package/apis/connect-2017-08-08.min.json +210 -206
- package/apis/elasticache-2015-02-02.min.json +3 -0
- package/apis/emr-serverless-2021-07-13.min.json +147 -11
- package/apis/emr-serverless-2021-07-13.paginators.json +6 -0
- package/apis/launch-wizard-2018-05-10.min.json +159 -0
- package/apis/sagemaker-2017-07-24.min.json +524 -479
- package/clients/bedrockagent.d.ts +17 -0
- package/clients/bedrockruntime.d.ts +421 -0
- package/clients/cloudtrail.d.ts +29 -12
- package/clients/codebuild.d.ts +2 -2
- package/clients/codegurusecurity.d.ts +60 -55
- package/clients/connect.d.ts +6 -1
- package/clients/elasticache.d.ts +6 -6
- package/clients/emrserverless.d.ts +169 -0
- package/clients/launchwizard.d.ts +181 -8
- package/clients/rds.d.ts +5 -5
- package/clients/sagemaker.d.ts +49 -10
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +12 -12
- package/dist/aws-sdk.js +259 -232
- package/dist/aws-sdk.min.js +94 -94
- package/lib/core.js +1 -1
- package/package.json +1 -1
@@ -67,6 +67,14 @@ declare class EMRServerless extends Service {
|
|
67
67
|
* Lists applications based on a set of parameters.
|
68
68
|
*/
|
69
69
|
listApplications(callback?: (err: AWSError, data: EMRServerless.Types.ListApplicationsResponse) => void): Request<EMRServerless.Types.ListApplicationsResponse, AWSError>;
|
70
|
+
/**
|
71
|
+
* Lists all attempt of a job run.
|
72
|
+
*/
|
73
|
+
listJobRunAttempts(params: EMRServerless.Types.ListJobRunAttemptsRequest, callback?: (err: AWSError, data: EMRServerless.Types.ListJobRunAttemptsResponse) => void): Request<EMRServerless.Types.ListJobRunAttemptsResponse, AWSError>;
|
74
|
+
/**
|
75
|
+
* Lists all attempt of a job run.
|
76
|
+
*/
|
77
|
+
listJobRunAttempts(callback?: (err: AWSError, data: EMRServerless.Types.ListJobRunAttemptsResponse) => void): Request<EMRServerless.Types.ListJobRunAttemptsResponse, AWSError>;
|
70
78
|
/**
|
71
79
|
* Lists job runs based on a set of parameters.
|
72
80
|
*/
|
@@ -265,6 +273,7 @@ declare namespace EMRServerless {
|
|
265
273
|
architecture?: Architecture;
|
266
274
|
}
|
267
275
|
export type Architecture = "ARM64"|"X86_64"|string;
|
276
|
+
export type AttemptNumber = number;
|
268
277
|
export interface AutoStartConfig {
|
269
278
|
/**
|
270
279
|
* Enables the application to automatically start on job submission. Defaults to true.
|
@@ -473,6 +482,10 @@ declare namespace EMRServerless {
|
|
473
482
|
* The ID of the job run.
|
474
483
|
*/
|
475
484
|
jobRunId: JobRunId;
|
485
|
+
/**
|
486
|
+
* An optimal parameter that indicates the amount of attempts for the job. If not specified, this value defaults to the attempt of the latest job.
|
487
|
+
*/
|
488
|
+
attempt?: AttemptNumber;
|
476
489
|
}
|
477
490
|
export interface GetDashboardForJobRunResponse {
|
478
491
|
/**
|
@@ -489,6 +502,10 @@ declare namespace EMRServerless {
|
|
489
502
|
* The ID of the job run.
|
490
503
|
*/
|
491
504
|
jobRunId: JobRunId;
|
505
|
+
/**
|
506
|
+
* An optimal parameter that indicates the amount of attempts for the job. If not specified, this value defaults to the attempt of the latest job.
|
507
|
+
*/
|
508
|
+
attempt?: AttemptNumber;
|
492
509
|
}
|
493
510
|
export interface GetJobRunResponse {
|
494
511
|
/**
|
@@ -638,8 +655,92 @@ declare namespace EMRServerless {
|
|
638
655
|
* The aggregate vCPU, memory, and storage that Amazon Web Services has billed for the job run. The billed resources include a 1-minute minimum usage for workers, plus additional storage over 20 GB per worker. Note that billed resources do not include usage for idle pre-initialized workers.
|
639
656
|
*/
|
640
657
|
billedResourceUtilization?: ResourceUtilization;
|
658
|
+
/**
|
659
|
+
* The mode of the job run.
|
660
|
+
*/
|
661
|
+
mode?: JobRunMode;
|
662
|
+
/**
|
663
|
+
* The retry policy of the job run.
|
664
|
+
*/
|
665
|
+
retryPolicy?: RetryPolicy;
|
666
|
+
/**
|
667
|
+
* The attempt of the job run.
|
668
|
+
*/
|
669
|
+
attempt?: AttemptNumber;
|
670
|
+
/**
|
671
|
+
* The date and time of when the job run attempt was created.
|
672
|
+
*/
|
673
|
+
attemptCreatedAt?: _Date;
|
674
|
+
/**
|
675
|
+
* The date and time of when the job run attempt was last updated.
|
676
|
+
*/
|
677
|
+
attemptUpdatedAt?: _Date;
|
641
678
|
}
|
679
|
+
export interface JobRunAttemptSummary {
|
680
|
+
/**
|
681
|
+
* The ID of the application the job is running on.
|
682
|
+
*/
|
683
|
+
applicationId: ApplicationId;
|
684
|
+
/**
|
685
|
+
* The ID of the job run attempt.
|
686
|
+
*/
|
687
|
+
id: JobRunId;
|
688
|
+
/**
|
689
|
+
* The name of the job run attempt.
|
690
|
+
*/
|
691
|
+
name?: String256;
|
692
|
+
/**
|
693
|
+
* The mode of the job run attempt.
|
694
|
+
*/
|
695
|
+
mode?: JobRunMode;
|
696
|
+
/**
|
697
|
+
* The Amazon Resource Name (ARN) of the job run.
|
698
|
+
*/
|
699
|
+
arn: JobArn;
|
700
|
+
/**
|
701
|
+
* The user who created the job run.
|
702
|
+
*/
|
703
|
+
createdBy: RequestIdentityUserArn;
|
704
|
+
/**
|
705
|
+
* The date and time of when the job run was created.
|
706
|
+
*/
|
707
|
+
jobCreatedAt: _Date;
|
708
|
+
/**
|
709
|
+
* The date and time when the job run attempt was created.
|
710
|
+
*/
|
711
|
+
createdAt: _Date;
|
712
|
+
/**
|
713
|
+
* The date and time of when the job run attempt was last updated.
|
714
|
+
*/
|
715
|
+
updatedAt: _Date;
|
716
|
+
/**
|
717
|
+
* The Amazon Resource Name (ARN) of the execution role of the job run..
|
718
|
+
*/
|
719
|
+
executionRole: IAMRoleArn;
|
720
|
+
/**
|
721
|
+
* The state of the job run attempt.
|
722
|
+
*/
|
723
|
+
state: JobRunState;
|
724
|
+
/**
|
725
|
+
* The state details of the job run attempt.
|
726
|
+
*/
|
727
|
+
stateDetails: String256;
|
728
|
+
/**
|
729
|
+
* The Amazon EMR release label of the job run attempt.
|
730
|
+
*/
|
731
|
+
releaseLabel: ReleaseLabel;
|
732
|
+
/**
|
733
|
+
* The type of the job run, such as Spark or Hive.
|
734
|
+
*/
|
735
|
+
type?: JobRunType;
|
736
|
+
/**
|
737
|
+
* The attempt number of the job run execution.
|
738
|
+
*/
|
739
|
+
attempt?: AttemptNumber;
|
740
|
+
}
|
741
|
+
export type JobRunAttempts = JobRunAttemptSummary[];
|
642
742
|
export type JobRunId = string;
|
743
|
+
export type JobRunMode = "BATCH"|"STREAMING"|string;
|
643
744
|
export type JobRunState = "SUBMITTED"|"PENDING"|"SCHEDULED"|"RUNNING"|"SUCCESS"|"FAILED"|"CANCELLING"|"CANCELLED"|string;
|
644
745
|
export type JobRunStateSet = JobRunState[];
|
645
746
|
export interface JobRunSummary {
|
@@ -655,6 +756,10 @@ declare namespace EMRServerless {
|
|
655
756
|
* The optional job run name. This doesn't have to be unique.
|
656
757
|
*/
|
657
758
|
name?: String256;
|
759
|
+
/**
|
760
|
+
* The mode of the job run.
|
761
|
+
*/
|
762
|
+
mode?: JobRunMode;
|
658
763
|
/**
|
659
764
|
* The ARN of the job run.
|
660
765
|
*/
|
@@ -691,6 +796,18 @@ declare namespace EMRServerless {
|
|
691
796
|
* The type of job run, such as Spark or Hive.
|
692
797
|
*/
|
693
798
|
type?: JobRunType;
|
799
|
+
/**
|
800
|
+
* The attempt number of the job run execution.
|
801
|
+
*/
|
802
|
+
attempt?: AttemptNumber;
|
803
|
+
/**
|
804
|
+
* The date and time of when the job run attempt was created.
|
805
|
+
*/
|
806
|
+
attemptCreatedAt?: _Date;
|
807
|
+
/**
|
808
|
+
* The date and time of when the job run attempt was last updated.
|
809
|
+
*/
|
810
|
+
attemptUpdatedAt?: _Date;
|
694
811
|
}
|
695
812
|
export type JobRunType = string;
|
696
813
|
export type JobRuns = JobRunSummary[];
|
@@ -719,6 +836,35 @@ declare namespace EMRServerless {
|
|
719
836
|
*/
|
720
837
|
nextToken?: NextToken;
|
721
838
|
}
|
839
|
+
export interface ListJobRunAttemptsRequest {
|
840
|
+
/**
|
841
|
+
* The ID of the application for which to list job runs.
|
842
|
+
*/
|
843
|
+
applicationId: ApplicationId;
|
844
|
+
/**
|
845
|
+
* The ID of the job run to list.
|
846
|
+
*/
|
847
|
+
jobRunId: JobRunId;
|
848
|
+
/**
|
849
|
+
* The token for the next set of job run attempt results.
|
850
|
+
*/
|
851
|
+
nextToken?: NextToken;
|
852
|
+
/**
|
853
|
+
* The maximum number of job run attempts to list.
|
854
|
+
*/
|
855
|
+
maxResults?: ListJobRunAttemptsRequestMaxResultsInteger;
|
856
|
+
}
|
857
|
+
export type ListJobRunAttemptsRequestMaxResultsInteger = number;
|
858
|
+
export interface ListJobRunAttemptsResponse {
|
859
|
+
/**
|
860
|
+
* The array of the listed job run attempt objects.
|
861
|
+
*/
|
862
|
+
jobRunAttempts: JobRunAttempts;
|
863
|
+
/**
|
864
|
+
* The output displays the token for the next set of application results. This is required for pagination and is available as a response of the previous request.
|
865
|
+
*/
|
866
|
+
nextToken?: NextToken;
|
867
|
+
}
|
722
868
|
export interface ListJobRunsRequest {
|
723
869
|
/**
|
724
870
|
* The ID of the application for which to list the job run.
|
@@ -744,6 +890,10 @@ declare namespace EMRServerless {
|
|
744
890
|
* An optional filter for job run states. Note that if this filter contains multiple states, the resulting list will be grouped by the state.
|
745
891
|
*/
|
746
892
|
states?: JobRunStateSet;
|
893
|
+
/**
|
894
|
+
* The mode of the job runs to list.
|
895
|
+
*/
|
896
|
+
mode?: JobRunMode;
|
747
897
|
}
|
748
898
|
export type ListJobRunsRequestMaxResultsInteger = number;
|
749
899
|
export interface ListJobRunsResponse {
|
@@ -852,6 +1002,17 @@ declare namespace EMRServerless {
|
|
852
1002
|
*/
|
853
1003
|
storageGBHour?: Double;
|
854
1004
|
}
|
1005
|
+
export interface RetryPolicy {
|
1006
|
+
/**
|
1007
|
+
* Maximum number of attempts for the job run. This parameter is only applicable for BATCH mode.
|
1008
|
+
*/
|
1009
|
+
maxAttempts?: AttemptNumber;
|
1010
|
+
/**
|
1011
|
+
* Maximum number of failed attempts per hour. This [arameter is only applicable for STREAMING mode.
|
1012
|
+
*/
|
1013
|
+
maxFailedAttemptsPerHour?: RetryPolicyMaxFailedAttemptsPerHourInteger;
|
1014
|
+
}
|
1015
|
+
export type RetryPolicyMaxFailedAttemptsPerHourInteger = number;
|
855
1016
|
export interface S3MonitoringConfiguration {
|
856
1017
|
/**
|
857
1018
|
* The Amazon S3 destination URI for log publishing.
|
@@ -921,6 +1082,14 @@ declare namespace EMRServerless {
|
|
921
1082
|
* The optional job run name. This doesn't have to be unique.
|
922
1083
|
*/
|
923
1084
|
name?: String256;
|
1085
|
+
/**
|
1086
|
+
* The mode of the job run when it starts.
|
1087
|
+
*/
|
1088
|
+
mode?: JobRunMode;
|
1089
|
+
/**
|
1090
|
+
* The retry policy when job run starts.
|
1091
|
+
*/
|
1092
|
+
retryPolicy?: RetryPolicy;
|
924
1093
|
}
|
925
1094
|
export interface StartJobRunResponse {
|
926
1095
|
/**
|
@@ -43,6 +43,14 @@ declare class LaunchWizard extends Service {
|
|
43
43
|
* Returns information about a workload.
|
44
44
|
*/
|
45
45
|
getWorkload(callback?: (err: AWSError, data: LaunchWizard.Types.GetWorkloadOutput) => void): Request<LaunchWizard.Types.GetWorkloadOutput, AWSError>;
|
46
|
+
/**
|
47
|
+
* Returns details for a given workload and deployment pattern, including the available specifications. You can use the ListWorkloads operation to discover the available workload names and the ListWorkloadDeploymentPatterns operation to discover the available deployment pattern names of a given workload.
|
48
|
+
*/
|
49
|
+
getWorkloadDeploymentPattern(params: LaunchWizard.Types.GetWorkloadDeploymentPatternInput, callback?: (err: AWSError, data: LaunchWizard.Types.GetWorkloadDeploymentPatternOutput) => void): Request<LaunchWizard.Types.GetWorkloadDeploymentPatternOutput, AWSError>;
|
50
|
+
/**
|
51
|
+
* Returns details for a given workload and deployment pattern, including the available specifications. You can use the ListWorkloads operation to discover the available workload names and the ListWorkloadDeploymentPatterns operation to discover the available deployment pattern names of a given workload.
|
52
|
+
*/
|
53
|
+
getWorkloadDeploymentPattern(callback?: (err: AWSError, data: LaunchWizard.Types.GetWorkloadDeploymentPatternOutput) => void): Request<LaunchWizard.Types.GetWorkloadDeploymentPatternOutput, AWSError>;
|
46
54
|
/**
|
47
55
|
* Lists the events of a deployment.
|
48
56
|
*/
|
@@ -60,23 +68,48 @@ declare class LaunchWizard extends Service {
|
|
60
68
|
*/
|
61
69
|
listDeployments(callback?: (err: AWSError, data: LaunchWizard.Types.ListDeploymentsOutput) => void): Request<LaunchWizard.Types.ListDeploymentsOutput, AWSError>;
|
62
70
|
/**
|
63
|
-
* Lists the
|
71
|
+
* Lists the tags associated with a specified resource.
|
72
|
+
*/
|
73
|
+
listTagsForResource(params: LaunchWizard.Types.ListTagsForResourceInput, callback?: (err: AWSError, data: LaunchWizard.Types.ListTagsForResourceOutput) => void): Request<LaunchWizard.Types.ListTagsForResourceOutput, AWSError>;
|
74
|
+
/**
|
75
|
+
* Lists the tags associated with a specified resource.
|
76
|
+
*/
|
77
|
+
listTagsForResource(callback?: (err: AWSError, data: LaunchWizard.Types.ListTagsForResourceOutput) => void): Request<LaunchWizard.Types.ListTagsForResourceOutput, AWSError>;
|
78
|
+
/**
|
79
|
+
* Lists the workload deployment patterns for a given workload name. You can use the ListWorkloads operation to discover the available workload names.
|
64
80
|
*/
|
65
81
|
listWorkloadDeploymentPatterns(params: LaunchWizard.Types.ListWorkloadDeploymentPatternsInput, callback?: (err: AWSError, data: LaunchWizard.Types.ListWorkloadDeploymentPatternsOutput) => void): Request<LaunchWizard.Types.ListWorkloadDeploymentPatternsOutput, AWSError>;
|
66
82
|
/**
|
67
|
-
* Lists the workload deployment patterns.
|
83
|
+
* Lists the workload deployment patterns for a given workload name. You can use the ListWorkloads operation to discover the available workload names.
|
68
84
|
*/
|
69
85
|
listWorkloadDeploymentPatterns(callback?: (err: AWSError, data: LaunchWizard.Types.ListWorkloadDeploymentPatternsOutput) => void): Request<LaunchWizard.Types.ListWorkloadDeploymentPatternsOutput, AWSError>;
|
70
86
|
/**
|
71
|
-
* Lists the
|
87
|
+
* Lists the available workload names. You can use the ListWorkloadDeploymentPatterns operation to discover the available deployment patterns for a given workload.
|
72
88
|
*/
|
73
89
|
listWorkloads(params: LaunchWizard.Types.ListWorkloadsInput, callback?: (err: AWSError, data: LaunchWizard.Types.ListWorkloadsOutput) => void): Request<LaunchWizard.Types.ListWorkloadsOutput, AWSError>;
|
74
90
|
/**
|
75
|
-
* Lists the
|
91
|
+
* Lists the available workload names. You can use the ListWorkloadDeploymentPatterns operation to discover the available deployment patterns for a given workload.
|
76
92
|
*/
|
77
93
|
listWorkloads(callback?: (err: AWSError, data: LaunchWizard.Types.ListWorkloadsOutput) => void): Request<LaunchWizard.Types.ListWorkloadsOutput, AWSError>;
|
94
|
+
/**
|
95
|
+
* Adds the specified tags to the given resource.
|
96
|
+
*/
|
97
|
+
tagResource(params: LaunchWizard.Types.TagResourceInput, callback?: (err: AWSError, data: LaunchWizard.Types.TagResourceOutput) => void): Request<LaunchWizard.Types.TagResourceOutput, AWSError>;
|
98
|
+
/**
|
99
|
+
* Adds the specified tags to the given resource.
|
100
|
+
*/
|
101
|
+
tagResource(callback?: (err: AWSError, data: LaunchWizard.Types.TagResourceOutput) => void): Request<LaunchWizard.Types.TagResourceOutput, AWSError>;
|
102
|
+
/**
|
103
|
+
* Removes the specified tags from the given resource.
|
104
|
+
*/
|
105
|
+
untagResource(params: LaunchWizard.Types.UntagResourceInput, callback?: (err: AWSError, data: LaunchWizard.Types.UntagResourceOutput) => void): Request<LaunchWizard.Types.UntagResourceOutput, AWSError>;
|
106
|
+
/**
|
107
|
+
* Removes the specified tags from the given resource.
|
108
|
+
*/
|
109
|
+
untagResource(callback?: (err: AWSError, data: LaunchWizard.Types.UntagResourceOutput) => void): Request<LaunchWizard.Types.UntagResourceOutput, AWSError>;
|
78
110
|
}
|
79
111
|
declare namespace LaunchWizard {
|
112
|
+
export type AllowedValues = ValueString[];
|
80
113
|
export type Boolean = boolean;
|
81
114
|
export interface CreateDeploymentInput {
|
82
115
|
/**
|
@@ -92,11 +125,15 @@ declare namespace LaunchWizard {
|
|
92
125
|
*/
|
93
126
|
name: DeploymentName;
|
94
127
|
/**
|
95
|
-
* The settings specified for the deployment. For more information
|
128
|
+
* The settings specified for the deployment. These settings define how to deploy and configure your resources created by the deployment. For more information about the specifications required for creating a deployment for a SAP workload, see SAP deployment specifications. To retrieve the specifications required to create a deployment for other workloads, use the GetWorkloadDeploymentPattern operation.
|
96
129
|
*/
|
97
130
|
specifications: DeploymentSpecifications;
|
98
131
|
/**
|
99
|
-
* The
|
132
|
+
* The tags to add to the deployment.
|
133
|
+
*/
|
134
|
+
tags?: Tags;
|
135
|
+
/**
|
136
|
+
* The name of the workload. You can use the ListWorkloads operation to discover supported values for this parameter.
|
100
137
|
*/
|
101
138
|
workloadName: WorkloadName;
|
102
139
|
}
|
@@ -122,6 +159,20 @@ declare namespace LaunchWizard {
|
|
122
159
|
*/
|
123
160
|
statusReason?: String;
|
124
161
|
}
|
162
|
+
export interface DeploymentConditionalField {
|
163
|
+
/**
|
164
|
+
* The comparator of the condition. Valid values: Equal | NotEqual
|
165
|
+
*/
|
166
|
+
comparator?: String;
|
167
|
+
/**
|
168
|
+
* The name of the deployment condition.
|
169
|
+
*/
|
170
|
+
name?: String;
|
171
|
+
/**
|
172
|
+
* The value of the condition.
|
173
|
+
*/
|
174
|
+
value?: String;
|
175
|
+
}
|
125
176
|
export interface DeploymentData {
|
126
177
|
/**
|
127
178
|
* The time the deployment was created.
|
@@ -131,6 +182,10 @@ declare namespace LaunchWizard {
|
|
131
182
|
* The time the deployment was deleted.
|
132
183
|
*/
|
133
184
|
deletedAt?: Timestamp;
|
185
|
+
/**
|
186
|
+
* The Amazon Resource Name (ARN) of the deployment.
|
187
|
+
*/
|
188
|
+
deploymentArn?: String;
|
134
189
|
/**
|
135
190
|
* The ID of the deployment.
|
136
191
|
*/
|
@@ -148,13 +203,17 @@ declare namespace LaunchWizard {
|
|
148
203
|
*/
|
149
204
|
resourceGroup?: String;
|
150
205
|
/**
|
151
|
-
* The
|
206
|
+
* The settings specified for the deployment. These settings define how to deploy and configure your resources created by the deployment. For more information about the specifications required for creating a deployment for a SAP workload, see SAP deployment specifications. To retrieve the specifications required to create a deployment for other workloads, use the GetWorkloadDeploymentPattern operation.
|
152
207
|
*/
|
153
208
|
specifications?: DeploymentSpecifications;
|
154
209
|
/**
|
155
210
|
* The status of the deployment.
|
156
211
|
*/
|
157
212
|
status?: DeploymentStatus;
|
213
|
+
/**
|
214
|
+
* Information about the tags attached to a deployment.
|
215
|
+
*/
|
216
|
+
tags?: Tags;
|
158
217
|
/**
|
159
218
|
* The name of the workload.
|
160
219
|
*/
|
@@ -228,6 +287,29 @@ declare namespace LaunchWizard {
|
|
228
287
|
export type DeploymentName = string;
|
229
288
|
export type DeploymentPatternName = string;
|
230
289
|
export type DeploymentSpecifications = {[key: string]: ValueString};
|
290
|
+
export type DeploymentSpecificationsData = DeploymentSpecificationsField[];
|
291
|
+
export interface DeploymentSpecificationsField {
|
292
|
+
/**
|
293
|
+
* The allowed values of the deployment specification.
|
294
|
+
*/
|
295
|
+
allowedValues?: AllowedValues;
|
296
|
+
/**
|
297
|
+
* The conditionals used for the deployment specification.
|
298
|
+
*/
|
299
|
+
conditionals?: SpecificationsConditionalData;
|
300
|
+
/**
|
301
|
+
* The description of the deployment specification.
|
302
|
+
*/
|
303
|
+
description?: String;
|
304
|
+
/**
|
305
|
+
* The name of the deployment specification.
|
306
|
+
*/
|
307
|
+
name?: String;
|
308
|
+
/**
|
309
|
+
* Indicates if the deployment specification is required.
|
310
|
+
*/
|
311
|
+
required?: String;
|
312
|
+
}
|
231
313
|
export type DeploymentStatus = "COMPLETED"|"CREATING"|"DELETE_IN_PROGRESS"|"DELETE_INITIATING"|"DELETE_FAILED"|"DELETED"|"FAILED"|"IN_PROGRESS"|"VALIDATING"|string;
|
232
314
|
export type EventStatus = "CANCELED"|"CANCELING"|"COMPLETED"|"CREATED"|"FAILED"|"IN_PROGRESS"|"PENDING"|"TIMED_OUT"|string;
|
233
315
|
export interface GetDeploymentInput {
|
@@ -242,6 +324,22 @@ declare namespace LaunchWizard {
|
|
242
324
|
*/
|
243
325
|
deployment?: DeploymentData;
|
244
326
|
}
|
327
|
+
export interface GetWorkloadDeploymentPatternInput {
|
328
|
+
/**
|
329
|
+
* The name of the deployment pattern.
|
330
|
+
*/
|
331
|
+
deploymentPatternName: DeploymentPatternName;
|
332
|
+
/**
|
333
|
+
* The name of the workload.
|
334
|
+
*/
|
335
|
+
workloadName: WorkloadName;
|
336
|
+
}
|
337
|
+
export interface GetWorkloadDeploymentPatternOutput {
|
338
|
+
/**
|
339
|
+
* Details about the workload deployment pattern.
|
340
|
+
*/
|
341
|
+
workloadDeploymentPattern?: WorkloadDeploymentPatternData;
|
342
|
+
}
|
245
343
|
export interface GetWorkloadInput {
|
246
344
|
/**
|
247
345
|
* The name of the workload.
|
@@ -281,7 +379,7 @@ declare namespace LaunchWizard {
|
|
281
379
|
}
|
282
380
|
export interface ListDeploymentsInput {
|
283
381
|
/**
|
284
|
-
* Filters to scope the results. The following filters are supported: WORKLOAD_NAME
|
382
|
+
* Filters to scope the results. The following filters are supported: WORKLOAD_NAME - The name used in deployments. DEPLOYMENT_STATUS - COMPLETED | CREATING | DELETE_IN_PROGRESS | DELETE_INITIATING | DELETE_FAILED | DELETED | FAILED | IN_PROGRESS | VALIDATING
|
285
383
|
*/
|
286
384
|
filters?: DeploymentFilterList;
|
287
385
|
/**
|
@@ -303,6 +401,18 @@ declare namespace LaunchWizard {
|
|
303
401
|
*/
|
304
402
|
nextToken?: NextToken;
|
305
403
|
}
|
404
|
+
export interface ListTagsForResourceInput {
|
405
|
+
/**
|
406
|
+
* The Amazon Resource Name (ARN) of the resource.
|
407
|
+
*/
|
408
|
+
resourceArn: String;
|
409
|
+
}
|
410
|
+
export interface ListTagsForResourceOutput {
|
411
|
+
/**
|
412
|
+
* Information about the tags.
|
413
|
+
*/
|
414
|
+
tags?: Tags;
|
415
|
+
}
|
306
416
|
export interface ListWorkloadDeploymentPatternsInput {
|
307
417
|
/**
|
308
418
|
* The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output.
|
@@ -352,8 +462,37 @@ declare namespace LaunchWizard {
|
|
352
462
|
export type MaxWorkloadDeploymentPatternResults = number;
|
353
463
|
export type MaxWorkloadResults = number;
|
354
464
|
export type NextToken = string;
|
465
|
+
export type SpecificationsConditionalData = DeploymentConditionalField[];
|
355
466
|
export type String = string;
|
467
|
+
export type TagKey = string;
|
468
|
+
export type TagKeyList = TagKey[];
|
469
|
+
export interface TagResourceInput {
|
470
|
+
/**
|
471
|
+
* The Amazon Resource Name (ARN) of the resource.
|
472
|
+
*/
|
473
|
+
resourceArn: String;
|
474
|
+
/**
|
475
|
+
* One or more tags to attach to the resource.
|
476
|
+
*/
|
477
|
+
tags: Tags;
|
478
|
+
}
|
479
|
+
export interface TagResourceOutput {
|
480
|
+
}
|
481
|
+
export type TagValue = string;
|
482
|
+
export type Tags = {[key: string]: TagValue};
|
356
483
|
export type Timestamp = Date;
|
484
|
+
export interface UntagResourceInput {
|
485
|
+
/**
|
486
|
+
* The Amazon Resource Name (ARN) of the resource.
|
487
|
+
*/
|
488
|
+
resourceArn: String;
|
489
|
+
/**
|
490
|
+
* Keys identifying the tags to remove.
|
491
|
+
*/
|
492
|
+
tagKeys: TagKeyList;
|
493
|
+
}
|
494
|
+
export interface UntagResourceOutput {
|
495
|
+
}
|
357
496
|
export type ValueString = string;
|
358
497
|
export interface WorkloadData {
|
359
498
|
/**
|
@@ -396,6 +535,40 @@ declare namespace LaunchWizard {
|
|
396
535
|
workloadName?: WorkloadName;
|
397
536
|
}
|
398
537
|
export type WorkloadDataSummaryList = WorkloadDataSummary[];
|
538
|
+
export interface WorkloadDeploymentPatternData {
|
539
|
+
/**
|
540
|
+
* The name of the deployment pattern.
|
541
|
+
*/
|
542
|
+
deploymentPatternName?: DeploymentPatternName;
|
543
|
+
/**
|
544
|
+
* The description of the deployment pattern.
|
545
|
+
*/
|
546
|
+
description?: String;
|
547
|
+
/**
|
548
|
+
* The display name of the deployment pattern.
|
549
|
+
*/
|
550
|
+
displayName?: String;
|
551
|
+
/**
|
552
|
+
* The settings specified for the deployment. These settings define how to deploy and configure your resources created by the deployment. For more information about the specifications required for creating a deployment for a SAP workload, see SAP deployment specifications. To retrieve the specifications required to create a deployment for other workloads, use the GetWorkloadDeploymentPattern operation.
|
553
|
+
*/
|
554
|
+
specifications?: DeploymentSpecificationsData;
|
555
|
+
/**
|
556
|
+
* The status of the deployment pattern.
|
557
|
+
*/
|
558
|
+
status?: WorkloadDeploymentPatternStatus;
|
559
|
+
/**
|
560
|
+
* The status message of the deployment pattern.
|
561
|
+
*/
|
562
|
+
statusMessage?: String;
|
563
|
+
/**
|
564
|
+
* The workload name of the deployment pattern.
|
565
|
+
*/
|
566
|
+
workloadName?: WorkloadName;
|
567
|
+
/**
|
568
|
+
* The workload version name of the deployment pattern.
|
569
|
+
*/
|
570
|
+
workloadVersionName?: WorkloadVersionName;
|
571
|
+
}
|
399
572
|
export interface WorkloadDeploymentPatternDataSummary {
|
400
573
|
/**
|
401
574
|
* The name of a workload deployment pattern.
|
package/clients/rds.d.ts
CHANGED
@@ -38,11 +38,11 @@ declare class RDS extends Service {
|
|
38
38
|
*/
|
39
39
|
addSourceIdentifierToSubscription(callback?: (err: AWSError, data: RDS.Types.AddSourceIdentifierToSubscriptionResult) => void): Request<RDS.Types.AddSourceIdentifierToSubscriptionResult, AWSError>;
|
40
40
|
/**
|
41
|
-
* Adds metadata tags to an Amazon RDS resource. These tags can also be used with cost allocation reporting to track cost associated with Amazon RDS resources, or used in a Condition statement in an IAM policy for Amazon RDS. For an overview on tagging
|
41
|
+
* Adds metadata tags to an Amazon RDS resource. These tags can also be used with cost allocation reporting to track cost associated with Amazon RDS resources, or used in a Condition statement in an IAM policy for Amazon RDS. For an overview on tagging your relational database resources, see Tagging Amazon RDS Resources or Tagging Amazon Aurora and Amazon RDS Resources.
|
42
42
|
*/
|
43
43
|
addTagsToResource(params: RDS.Types.AddTagsToResourceMessage, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
44
44
|
/**
|
45
|
-
* Adds metadata tags to an Amazon RDS resource. These tags can also be used with cost allocation reporting to track cost associated with Amazon RDS resources, or used in a Condition statement in an IAM policy for Amazon RDS. For an overview on tagging
|
45
|
+
* Adds metadata tags to an Amazon RDS resource. These tags can also be used with cost allocation reporting to track cost associated with Amazon RDS resources, or used in a Condition statement in an IAM policy for Amazon RDS. For an overview on tagging your relational database resources, see Tagging Amazon RDS Resources or Tagging Amazon Aurora and Amazon RDS Resources.
|
46
46
|
*/
|
47
47
|
addTagsToResource(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
48
48
|
/**
|
@@ -2052,7 +2052,7 @@ declare namespace RDS {
|
|
2052
2052
|
*/
|
2053
2053
|
CharacterSetName?: String;
|
2054
2054
|
/**
|
2055
|
-
* The name for your database of up to 64 alphanumeric characters.
|
2055
|
+
* The name for your database of up to 64 alphanumeric characters. A database named postgres is always created. If this parameter is specified, an additional database with this name is created. Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
2056
2056
|
*/
|
2057
2057
|
DatabaseName?: String;
|
2058
2058
|
/**
|
@@ -2300,7 +2300,7 @@ declare namespace RDS {
|
|
2300
2300
|
}
|
2301
2301
|
export interface CreateDBInstanceMessage {
|
2302
2302
|
/**
|
2303
|
-
* The meaning of this parameter differs according to the database engine you use. Amazon Aurora MySQL The name of the database to create when the primary DB instance of the Aurora MySQL DB cluster is created. If this parameter isn't specified for an Aurora MySQL DB cluster, no database is created in the DB cluster. Constraints: Must contain 1 to 64 alphanumeric characters. Can't be a word reserved by the database engine. Amazon Aurora PostgreSQL The name of the database to create when the primary DB instance of the Aurora PostgreSQL DB cluster is created.
|
2303
|
+
* The meaning of this parameter differs according to the database engine you use. Amazon Aurora MySQL The name of the database to create when the primary DB instance of the Aurora MySQL DB cluster is created. If this parameter isn't specified for an Aurora MySQL DB cluster, no database is created in the DB cluster. Constraints: Must contain 1 to 64 alphanumeric characters. Can't be a word reserved by the database engine. Amazon Aurora PostgreSQL The name of the database to create when the primary DB instance of the Aurora PostgreSQL DB cluster is created. A database named postgres is always created. If this parameter is specified, an additional database with this name is created. Constraints: It must contain 1 to 63 alphanumeric characters. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0 to 9). Can't be a word reserved by the database engine. Amazon RDS Custom for Oracle The Oracle System ID (SID) of the created RDS Custom DB instance. If you don't specify a value, the default value is ORCL for non-CDBs and RDSCDB for CDBs. Default: ORCL Constraints: Must contain 1 to 8 alphanumeric characters. Must contain a letter. Can't be a word reserved by the database engine. Amazon RDS Custom for SQL Server Not applicable. Must be null. RDS for Db2 The name of the database to create when the DB instance is created. If this parameter isn't specified, no database is created in the DB instance. In some cases, we recommend that you don't add a database name. For more information, see Additional considerations in the Amazon RDS User Guide. Constraints: Must contain 1 to 64 letters or numbers. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the specified database engine. RDS for MariaDB The name of the database to create when the DB instance is created. If this parameter isn't specified, no database is created in the DB instance. Constraints: Must contain 1 to 64 letters or numbers. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the specified database engine. RDS for MySQL The name of the database to create when the DB instance is created. If this parameter isn't specified, no database is created in the DB instance. Constraints: Must contain 1 to 64 letters or numbers. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the specified database engine. RDS for Oracle The Oracle System ID (SID) of the created DB instance. If you don't specify a value, the default value is ORCL. You can't specify the string null, or any other reserved word, for DBName. Default: ORCL Constraints: Can't be longer than 8 characters. RDS for PostgreSQL The name of the database to create when the DB instance is created. A database named postgres is always created. If this parameter is specified, an additional database with this name is created. Constraints: Must contain 1 to 63 letters, numbers, or underscores. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the specified database engine. RDS for SQL Server Not applicable. Must be null.
|
2304
2304
|
*/
|
2305
2305
|
DBName?: String;
|
2306
2306
|
/**
|
@@ -9967,7 +9967,7 @@ declare namespace RDS {
|
|
9967
9967
|
*/
|
9968
9968
|
S3Prefix?: String;
|
9969
9969
|
/**
|
9970
|
-
* An Amazon Web Services Identity and Access Management (IAM) role
|
9970
|
+
* An Amazon Web Services Identity and Access Management (IAM) role with a trust policy and a permissions policy that allows Amazon RDS to access your Amazon S3 bucket. For information about this role, see Creating an IAM role manually in the Amazon RDS User Guide.
|
9971
9971
|
*/
|
9972
9972
|
S3IngestionRoleArn: String;
|
9973
9973
|
/**
|