aws-sdk 2.1398.0 → 2.1400.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 +15 -1
- package/README.md +1 -1
- package/apis/account-2021-02-01.paginators.json +2 -1
- package/apis/cloudformation-2010-05-15.min.json +73 -71
- package/apis/connect-2017-08-08.min.json +75 -73
- package/apis/discovery-2015-11-01.min.json +48 -0
- package/apis/ec2-2016-11-15.examples.json +17 -382
- package/apis/ec2-2016-11-15.min.json +1180 -1169
- package/apis/glue-2017-03-31.min.json +4 -2
- package/apis/pricing-2017-10-15.examples.json +0 -63
- package/apis/pricing-2017-10-15.waiters2.json +5 -0
- package/apis/route53domains-2014-05-15.min.json +9 -9
- package/apis/s3-2006-03-01.examples.json +137 -137
- package/apis/s3-2006-03-01.min.json +37 -5
- package/apis/sagemaker-2017-07-24.min.json +926 -866
- package/clients/cloudformation.d.ts +10 -1
- package/clients/connect.d.ts +13 -5
- package/clients/discovery.d.ts +133 -35
- package/clients/ec2.d.ts +21 -4
- package/clients/ecs.d.ts +4 -4
- package/clients/glue.d.ts +8 -0
- package/clients/iam.d.ts +4 -4
- package/clients/pricing.d.ts +2 -2
- package/clients/pricing.js +1 -0
- package/clients/route53domains.d.ts +11 -10
- package/clients/s3.d.ts +67 -59
- package/clients/sagemaker.d.ts +107 -36
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +1546 -1539
- package/dist/aws-sdk.js +1666 -1611
- package/dist/aws-sdk.min.js +86 -86
- package/lib/core.js +1 -1
- package/package.json +1 -1
@@ -998,6 +998,10 @@ declare namespace CloudFormation {
|
|
998
998
|
* Creates a change set for the all nested stacks specified in the template. The default behavior of this action is set to False. To include nested sets in a change set, specify True.
|
999
999
|
*/
|
1000
1000
|
IncludeNestedStacks?: IncludeNestedStacks;
|
1001
|
+
/**
|
1002
|
+
* Determines what action will be taken if stack creation fails. If this parameter is specified, the DisableRollback parameter to the ExecuteChangeSet API operation must not be specified. This must be one of these values: DELETE - Deletes the change set if the stack creation fails. This is only valid when the ChangeSetType parameter is set to CREATE. If the deletion of the stack fails, the status of the stack is DELETE_FAILED. DO_NOTHING - if the stack creation fails, do nothing. This is equivalent to specifying true for the DisableRollback parameter to the ExecuteChangeSet API operation. ROLLBACK - if the stack creation fails, roll back the stack. This is equivalent to specifying false for the DisableRollback parameter to the ExecuteChangeSet API operation. For nested stacks, when the OnStackFailure parameter is set to DELETE for the change set for the parent stack, any failure in a child stack will cause the parent stack creation to fail and all stacks to be deleted.
|
1003
|
+
*/
|
1004
|
+
OnStackFailure?: OnStackFailure;
|
1001
1005
|
}
|
1002
1006
|
export interface CreateChangeSetOutput {
|
1003
1007
|
/**
|
@@ -1491,6 +1495,10 @@ declare namespace CloudFormation {
|
|
1491
1495
|
* Specifies the change set ID of the root change set in the current nested change set hierarchy.
|
1492
1496
|
*/
|
1493
1497
|
RootChangeSetId?: ChangeSetId;
|
1498
|
+
/**
|
1499
|
+
* Determines what action will be taken if stack creation fails. When this parameter is specified, the DisableRollback parameter to the ExecuteChangeSet API operation must not be specified. This must be one of these values: DELETE - Deletes the change set if the stack creation fails. This is only valid when the ChangeSetType parameter is set to CREATE. If the deletion of the stack fails, the status of the stack is DELETE_FAILED. DO_NOTHING - if the stack creation fails, do nothing. This is equivalent to specifying true for the DisableRollback parameter to the ExecuteChangeSet API operation. ROLLBACK - if the stack creation fails, roll back the stack. This is equivalent to specifying false for the DisableRollback parameter to the ExecuteChangeSet API operation.
|
1500
|
+
*/
|
1501
|
+
OnStackFailure?: OnStackFailure;
|
1494
1502
|
}
|
1495
1503
|
export interface DescribeOrganizationsAccessInput {
|
1496
1504
|
/**
|
@@ -1987,7 +1995,7 @@ declare namespace CloudFormation {
|
|
1987
1995
|
*/
|
1988
1996
|
ClientRequestToken?: ClientRequestToken;
|
1989
1997
|
/**
|
1990
|
-
* Preserves the state of previously provisioned resources when an operation fails. Default: True
|
1998
|
+
* Preserves the state of previously provisioned resources when an operation fails. This parameter can't be specified when the OnStackFailure parameter to the CreateChangeSet API operation was specified. True - if the stack creation fails, do nothing. This is equivalent to specifying DO_NOTHING for the OnStackFailure parameter to the CreateChangeSet API operation. False - if the stack creation fails, roll back the stack. This is equivalent to specifying ROLLBACK for the OnStackFailure parameter to the CreateChangeSet API operation. Default: True
|
1991
1999
|
*/
|
1992
2000
|
DisableRollback?: DisableRollback;
|
1993
2001
|
}
|
@@ -2557,6 +2565,7 @@ declare namespace CloudFormation {
|
|
2557
2565
|
export type NotificationARN = string;
|
2558
2566
|
export type NotificationARNs = NotificationARN[];
|
2559
2567
|
export type OnFailure = "DO_NOTHING"|"ROLLBACK"|"DELETE"|string;
|
2568
|
+
export type OnStackFailure = "DO_NOTHING"|"ROLLBACK"|"DELETE"|string;
|
2560
2569
|
export interface OperationResultFilter {
|
2561
2570
|
/**
|
2562
2571
|
* The type of filter to apply.
|
package/clients/connect.d.ts
CHANGED
@@ -1052,11 +1052,11 @@ declare class Connect extends Service {
|
|
1052
1052
|
*/
|
1053
1053
|
replicateInstance(callback?: (err: AWSError, data: Connect.Types.ReplicateInstanceResponse) => void): Request<Connect.Types.ReplicateInstanceResponse, AWSError>;
|
1054
1054
|
/**
|
1055
|
-
* When a contact is being recorded, and the recording has been suspended using SuspendContactRecording, this API resumes recording the call.
|
1055
|
+
* When a contact is being recorded, and the recording has been suspended using SuspendContactRecording, this API resumes recording the call or screen. Voice and screen recordings are supported.
|
1056
1056
|
*/
|
1057
1057
|
resumeContactRecording(params: Connect.Types.ResumeContactRecordingRequest, callback?: (err: AWSError, data: Connect.Types.ResumeContactRecordingResponse) => void): Request<Connect.Types.ResumeContactRecordingResponse, AWSError>;
|
1058
1058
|
/**
|
1059
|
-
* When a contact is being recorded, and the recording has been suspended using SuspendContactRecording, this API resumes recording the call.
|
1059
|
+
* When a contact is being recorded, and the recording has been suspended using SuspendContactRecording, this API resumes recording the call or screen. Voice and screen recordings are supported.
|
1060
1060
|
*/
|
1061
1061
|
resumeContactRecording(callback?: (err: AWSError, data: Connect.Types.ResumeContactRecordingResponse) => void): Request<Connect.Types.ResumeContactRecordingResponse, AWSError>;
|
1062
1062
|
/**
|
@@ -1212,11 +1212,11 @@ declare class Connect extends Service {
|
|
1212
1212
|
*/
|
1213
1213
|
submitContactEvaluation(callback?: (err: AWSError, data: Connect.Types.SubmitContactEvaluationResponse) => void): Request<Connect.Types.SubmitContactEvaluationResponse, AWSError>;
|
1214
1214
|
/**
|
1215
|
-
* When a contact is being recorded, this API suspends recording the call. For example, you might suspend the call recording while collecting sensitive information, such as a credit card number. Then use ResumeContactRecording to restart recording.
|
1215
|
+
* When a contact is being recorded, this API suspends recording the call or screen. For example, you might suspend the call or screen recording while collecting sensitive information, such as a credit card number. Then use ResumeContactRecording to restart recording. The period of time that the recording is suspended is filled with silence in the final recording. Voice and screen recordings are supported.
|
1216
1216
|
*/
|
1217
1217
|
suspendContactRecording(params: Connect.Types.SuspendContactRecordingRequest, callback?: (err: AWSError, data: Connect.Types.SuspendContactRecordingResponse) => void): Request<Connect.Types.SuspendContactRecordingResponse, AWSError>;
|
1218
1218
|
/**
|
1219
|
-
* When a contact is being recorded, this API suspends recording the call. For example, you might suspend the call recording while collecting sensitive information, such as a credit card number. Then use ResumeContactRecording to restart recording.
|
1219
|
+
* When a contact is being recorded, this API suspends recording the call or screen. For example, you might suspend the call or screen recording while collecting sensitive information, such as a credit card number. Then use ResumeContactRecording to restart recording. The period of time that the recording is suspended is filled with silence in the final recording. Voice and screen recordings are supported.
|
1220
1220
|
*/
|
1221
1221
|
suspendContactRecording(callback?: (err: AWSError, data: Connect.Types.SuspendContactRecordingResponse) => void): Request<Connect.Types.SuspendContactRecordingResponse, AWSError>;
|
1222
1222
|
/**
|
@@ -5043,6 +5043,10 @@ declare namespace Connect {
|
|
5043
5043
|
* Whether outbound calls are enabled.
|
5044
5044
|
*/
|
5045
5045
|
OutboundCallsEnabled?: OutboundCallsEnabled;
|
5046
|
+
/**
|
5047
|
+
* This URL allows contact center users to access Amazon Connect admin website.
|
5048
|
+
*/
|
5049
|
+
InstanceAccessUrl?: Url;
|
5046
5050
|
}
|
5047
5051
|
export type InstanceArn = string;
|
5048
5052
|
export type InstanceAttributeType = "INBOUND_CALLS"|"OUTBOUND_CALLS"|"CONTACTFLOW_LOGS"|"CONTACT_LENS"|"AUTO_RESOLVE_BEST_VOICES"|"USE_CUSTOM_TTS_VOICES"|"EARLY_MEDIA"|"MULTI_PARTY_CONFERENCE"|"HIGH_VOLUME_OUTBOUND"|"ENHANCED_CONTACT_MONITORING"|string;
|
@@ -5083,7 +5087,7 @@ declare namespace Connect {
|
|
5083
5087
|
KinesisFirehoseConfig?: KinesisFirehoseConfig;
|
5084
5088
|
}
|
5085
5089
|
export type InstanceStorageConfigs = InstanceStorageConfig[];
|
5086
|
-
export type InstanceStorageResourceType = "CHAT_TRANSCRIPTS"|"CALL_RECORDINGS"|"SCHEDULED_REPORTS"|"MEDIA_STREAMS"|"CONTACT_TRACE_RECORDS"|"AGENT_EVENTS"|"REAL_TIME_CONTACT_ANALYSIS_SEGMENTS"|"ATTACHMENTS"|"CONTACT_EVALUATIONS"|string;
|
5090
|
+
export type InstanceStorageResourceType = "CHAT_TRANSCRIPTS"|"CALL_RECORDINGS"|"SCHEDULED_REPORTS"|"MEDIA_STREAMS"|"CONTACT_TRACE_RECORDS"|"AGENT_EVENTS"|"REAL_TIME_CONTACT_ANALYSIS_SEGMENTS"|"ATTACHMENTS"|"CONTACT_EVALUATIONS"|"SCREEN_RECORDINGS"|string;
|
5087
5091
|
export interface InstanceSummary {
|
5088
5092
|
/**
|
5089
5093
|
* The identifier of the instance.
|
@@ -5121,6 +5125,10 @@ declare namespace Connect {
|
|
5121
5125
|
* Whether outbound calls are enabled.
|
5122
5126
|
*/
|
5123
5127
|
OutboundCallsEnabled?: OutboundCallsEnabled;
|
5128
|
+
/**
|
5129
|
+
* This URL allows contact center users to access Amazon Connect admin website.
|
5130
|
+
*/
|
5131
|
+
InstanceAccessUrl?: Url;
|
5124
5132
|
}
|
5125
5133
|
export type InstanceSummaryList = InstanceSummary[];
|
5126
5134
|
export type Integer = number;
|
package/clients/discovery.d.ts
CHANGED
@@ -60,11 +60,11 @@ declare class Discovery extends Service {
|
|
60
60
|
*/
|
61
61
|
deleteTags(callback?: (err: AWSError, data: Discovery.Types.DeleteTagsResponse) => void): Request<Discovery.Types.DeleteTagsResponse, AWSError>;
|
62
62
|
/**
|
63
|
-
* Lists agents or
|
63
|
+
* Lists agents or collectors as specified by ID or other filters. All agents/collectors associated with your user can be listed if you call DescribeAgents as is without passing any parameters.
|
64
64
|
*/
|
65
65
|
describeAgents(params: Discovery.Types.DescribeAgentsRequest, callback?: (err: AWSError, data: Discovery.Types.DescribeAgentsResponse) => void): Request<Discovery.Types.DescribeAgentsResponse, AWSError>;
|
66
66
|
/**
|
67
|
-
* Lists agents or
|
67
|
+
* Lists agents or collectors as specified by ID or other filters. All agents/collectors associated with your user can be listed if you call DescribeAgents as is without passing any parameters.
|
68
68
|
*/
|
69
69
|
describeAgents(callback?: (err: AWSError, data: Discovery.Types.DescribeAgentsResponse) => void): Request<Discovery.Types.DescribeAgentsResponse, AWSError>;
|
70
70
|
/**
|
@@ -76,11 +76,11 @@ declare class Discovery extends Service {
|
|
76
76
|
*/
|
77
77
|
describeConfigurations(callback?: (err: AWSError, data: Discovery.Types.DescribeConfigurationsResponse) => void): Request<Discovery.Types.DescribeConfigurationsResponse, AWSError>;
|
78
78
|
/**
|
79
|
-
* Lists exports as specified by ID. All continuous exports associated with your user
|
79
|
+
* Lists exports as specified by ID. All continuous exports associated with your user can be listed if you call DescribeContinuousExports as is without passing any parameters.
|
80
80
|
*/
|
81
81
|
describeContinuousExports(params: Discovery.Types.DescribeContinuousExportsRequest, callback?: (err: AWSError, data: Discovery.Types.DescribeContinuousExportsResponse) => void): Request<Discovery.Types.DescribeContinuousExportsResponse, AWSError>;
|
82
82
|
/**
|
83
|
-
* Lists exports as specified by ID. All continuous exports associated with your user
|
83
|
+
* Lists exports as specified by ID. All continuous exports associated with your user can be listed if you call DescribeContinuousExports as is without passing any parameters.
|
84
84
|
*/
|
85
85
|
describeContinuousExports(callback?: (err: AWSError, data: Discovery.Types.DescribeContinuousExportsResponse) => void): Request<Discovery.Types.DescribeContinuousExportsResponse, AWSError>;
|
86
86
|
/**
|
@@ -108,11 +108,11 @@ declare class Discovery extends Service {
|
|
108
108
|
*/
|
109
109
|
describeImportTasks(callback?: (err: AWSError, data: Discovery.Types.DescribeImportTasksResponse) => void): Request<Discovery.Types.DescribeImportTasksResponse, AWSError>;
|
110
110
|
/**
|
111
|
-
* Retrieves a list of configuration items that have tags as specified by the key-value pairs, name and value, passed to the optional parameter filters. There are three valid tag filter names: tagKey tagValue configurationId Also, all configuration items associated with your user
|
111
|
+
* Retrieves a list of configuration items that have tags as specified by the key-value pairs, name and value, passed to the optional parameter filters. There are three valid tag filter names: tagKey tagValue configurationId Also, all configuration items associated with your user that have tags can be listed if you call DescribeTags as is without passing any parameters.
|
112
112
|
*/
|
113
113
|
describeTags(params: Discovery.Types.DescribeTagsRequest, callback?: (err: AWSError, data: Discovery.Types.DescribeTagsResponse) => void): Request<Discovery.Types.DescribeTagsResponse, AWSError>;
|
114
114
|
/**
|
115
|
-
* Retrieves a list of configuration items that have tags as specified by the key-value pairs, name and value, passed to the optional parameter filters. There are three valid tag filter names: tagKey tagValue configurationId Also, all configuration items associated with your user
|
115
|
+
* Retrieves a list of configuration items that have tags as specified by the key-value pairs, name and value, passed to the optional parameter filters. There are three valid tag filter names: tagKey tagValue configurationId Also, all configuration items associated with your user that have tags can be listed if you call DescribeTags as is without passing any parameters.
|
116
116
|
*/
|
117
117
|
describeTags(callback?: (err: AWSError, data: Discovery.Types.DescribeTagsResponse) => void): Request<Discovery.Types.DescribeTagsResponse, AWSError>;
|
118
118
|
/**
|
@@ -160,27 +160,27 @@ declare class Discovery extends Service {
|
|
160
160
|
*/
|
161
161
|
startContinuousExport(callback?: (err: AWSError, data: Discovery.Types.StartContinuousExportResponse) => void): Request<Discovery.Types.StartContinuousExportResponse, AWSError>;
|
162
162
|
/**
|
163
|
-
* Instructs the specified agents
|
163
|
+
* Instructs the specified agents to start collecting data.
|
164
164
|
*/
|
165
165
|
startDataCollectionByAgentIds(params: Discovery.Types.StartDataCollectionByAgentIdsRequest, callback?: (err: AWSError, data: Discovery.Types.StartDataCollectionByAgentIdsResponse) => void): Request<Discovery.Types.StartDataCollectionByAgentIdsResponse, AWSError>;
|
166
166
|
/**
|
167
|
-
* Instructs the specified agents
|
167
|
+
* Instructs the specified agents to start collecting data.
|
168
168
|
*/
|
169
169
|
startDataCollectionByAgentIds(callback?: (err: AWSError, data: Discovery.Types.StartDataCollectionByAgentIdsResponse) => void): Request<Discovery.Types.StartDataCollectionByAgentIdsResponse, AWSError>;
|
170
170
|
/**
|
171
|
-
*
|
171
|
+
* Begins the export of a discovered data report to an Amazon S3 bucket managed by Amazon Web Services. Exports might provide an estimate of fees and savings based on certain information that you provide. Fee estimates do not include any taxes that might apply. Your actual fees and savings depend on a variety of factors, including your actual usage of Amazon Web Services services, which might vary from the estimates provided in this report. If you do not specify preferences or agentIds in the filter, a summary of all servers, applications, tags, and performance is generated. This data is an aggregation of all server data collected through on-premises tooling, file import, application grouping and applying tags. If you specify agentIds in a filter, the task exports up to 72 hours of detailed data collected by the identified Application Discovery Agent, including network, process, and performance details. A time range for exported agent data may be set by using startTime and endTime. Export of detailed agent data is limited to five concurrently running exports. Export of detailed agent data is limited to two exports per day. If you enable ec2RecommendationsPreferences in preferences , an Amazon EC2 instance matching the characteristics of each server in Application Discovery Service is generated. Changing the attributes of the ec2RecommendationsPreferences changes the criteria of the recommendation.
|
172
172
|
*/
|
173
173
|
startExportTask(params: Discovery.Types.StartExportTaskRequest, callback?: (err: AWSError, data: Discovery.Types.StartExportTaskResponse) => void): Request<Discovery.Types.StartExportTaskResponse, AWSError>;
|
174
174
|
/**
|
175
|
-
*
|
175
|
+
* Begins the export of a discovered data report to an Amazon S3 bucket managed by Amazon Web Services. Exports might provide an estimate of fees and savings based on certain information that you provide. Fee estimates do not include any taxes that might apply. Your actual fees and savings depend on a variety of factors, including your actual usage of Amazon Web Services services, which might vary from the estimates provided in this report. If you do not specify preferences or agentIds in the filter, a summary of all servers, applications, tags, and performance is generated. This data is an aggregation of all server data collected through on-premises tooling, file import, application grouping and applying tags. If you specify agentIds in a filter, the task exports up to 72 hours of detailed data collected by the identified Application Discovery Agent, including network, process, and performance details. A time range for exported agent data may be set by using startTime and endTime. Export of detailed agent data is limited to five concurrently running exports. Export of detailed agent data is limited to two exports per day. If you enable ec2RecommendationsPreferences in preferences , an Amazon EC2 instance matching the characteristics of each server in Application Discovery Service is generated. Changing the attributes of the ec2RecommendationsPreferences changes the criteria of the recommendation.
|
176
176
|
*/
|
177
177
|
startExportTask(callback?: (err: AWSError, data: Discovery.Types.StartExportTaskResponse) => void): Request<Discovery.Types.StartExportTaskResponse, AWSError>;
|
178
178
|
/**
|
179
|
-
* Starts an import task, which allows you to import details of your on-premises environment directly into Amazon Web Services Migration Hub without having to use the Application Discovery Service (
|
179
|
+
* Starts an import task, which allows you to import details of your on-premises environment directly into Amazon Web Services Migration Hub without having to use the Amazon Web Services Application Discovery Service (Application Discovery Service) tools such as the Amazon Web Services Application Discovery Service Agentless Collector or Application Discovery Agent. This gives you the option to perform migration assessment and planning directly from your imported data, including the ability to group your devices as applications and track their migration status. To start an import request, do this: Download the specially formatted comma separated value (CSV) import template, which you can find here: https://s3.us-west-2.amazonaws.com/templates-7cffcf56-bd96-4b1c-b45b-a5b42f282e46/import_template.csv. Fill out the template with your server and application data. Upload your import file to an Amazon S3 bucket, and make a note of it's Object URL. Your import file must be in the CSV format. Use the console or the StartImportTask command with the Amazon Web Services CLI or one of the Amazon Web Services SDKs to import the records from your file. For more information, including step-by-step procedures, see Migration Hub Import in the Amazon Web Services Application Discovery Service User Guide. There are limits to the number of import tasks you can create (and delete) in an Amazon Web Services account. For more information, see Amazon Web Services Application Discovery Service Limits in the Amazon Web Services Application Discovery Service User Guide.
|
180
180
|
*/
|
181
181
|
startImportTask(params: Discovery.Types.StartImportTaskRequest, callback?: (err: AWSError, data: Discovery.Types.StartImportTaskResponse) => void): Request<Discovery.Types.StartImportTaskResponse, AWSError>;
|
182
182
|
/**
|
183
|
-
* Starts an import task, which allows you to import details of your on-premises environment directly into Amazon Web Services Migration Hub without having to use the Application Discovery Service (
|
183
|
+
* Starts an import task, which allows you to import details of your on-premises environment directly into Amazon Web Services Migration Hub without having to use the Amazon Web Services Application Discovery Service (Application Discovery Service) tools such as the Amazon Web Services Application Discovery Service Agentless Collector or Application Discovery Agent. This gives you the option to perform migration assessment and planning directly from your imported data, including the ability to group your devices as applications and track their migration status. To start an import request, do this: Download the specially formatted comma separated value (CSV) import template, which you can find here: https://s3.us-west-2.amazonaws.com/templates-7cffcf56-bd96-4b1c-b45b-a5b42f282e46/import_template.csv. Fill out the template with your server and application data. Upload your import file to an Amazon S3 bucket, and make a note of it's Object URL. Your import file must be in the CSV format. Use the console or the StartImportTask command with the Amazon Web Services CLI or one of the Amazon Web Services SDKs to import the records from your file. For more information, including step-by-step procedures, see Migration Hub Import in the Amazon Web Services Application Discovery Service User Guide. There are limits to the number of import tasks you can create (and delete) in an Amazon Web Services account. For more information, see Amazon Web Services Application Discovery Service Limits in the Amazon Web Services Application Discovery Service User Guide.
|
184
184
|
*/
|
185
185
|
startImportTask(callback?: (err: AWSError, data: Discovery.Types.StartImportTaskResponse) => void): Request<Discovery.Types.StartImportTaskResponse, AWSError>;
|
186
186
|
/**
|
@@ -192,11 +192,11 @@ declare class Discovery extends Service {
|
|
192
192
|
*/
|
193
193
|
stopContinuousExport(callback?: (err: AWSError, data: Discovery.Types.StopContinuousExportResponse) => void): Request<Discovery.Types.StopContinuousExportResponse, AWSError>;
|
194
194
|
/**
|
195
|
-
* Instructs the specified agents
|
195
|
+
* Instructs the specified agents to stop collecting data.
|
196
196
|
*/
|
197
197
|
stopDataCollectionByAgentIds(params: Discovery.Types.StopDataCollectionByAgentIdsRequest, callback?: (err: AWSError, data: Discovery.Types.StopDataCollectionByAgentIdsResponse) => void): Request<Discovery.Types.StopDataCollectionByAgentIdsResponse, AWSError>;
|
198
198
|
/**
|
199
|
-
* Instructs the specified agents
|
199
|
+
* Instructs the specified agents to stop collecting data.
|
200
200
|
*/
|
201
201
|
stopDataCollectionByAgentIds(callback?: (err: AWSError, data: Discovery.Types.StopDataCollectionByAgentIdsResponse) => void): Request<Discovery.Types.StopDataCollectionByAgentIdsResponse, AWSError>;
|
202
202
|
/**
|
@@ -211,11 +211,11 @@ declare class Discovery extends Service {
|
|
211
211
|
declare namespace Discovery {
|
212
212
|
export interface AgentConfigurationStatus {
|
213
213
|
/**
|
214
|
-
* The agent
|
214
|
+
* The agent ID.
|
215
215
|
*/
|
216
216
|
agentId?: String;
|
217
217
|
/**
|
218
|
-
* Information about the status of the StartDataCollection and StopDataCollection operations. The system has recorded the data collection operation. The agent
|
218
|
+
* Information about the status of the StartDataCollection and StopDataCollection operations. The system has recorded the data collection operation. The agent receives this command the next time it polls for a new command.
|
219
219
|
*/
|
220
220
|
operationSucceeded?: Boolean;
|
221
221
|
/**
|
@@ -228,15 +228,15 @@ declare namespace Discovery {
|
|
228
228
|
export type AgentIds = AgentId[];
|
229
229
|
export interface AgentInfo {
|
230
230
|
/**
|
231
|
-
* The agent or
|
231
|
+
* The agent or collector ID.
|
232
232
|
*/
|
233
233
|
agentId?: AgentId;
|
234
234
|
/**
|
235
|
-
* The name of the host where the agent or
|
235
|
+
* The name of the host where the agent or collector resides. The host can be a server or virtual machine.
|
236
236
|
*/
|
237
237
|
hostName?: String;
|
238
238
|
/**
|
239
|
-
* Network details about the host where the agent or
|
239
|
+
* Network details about the host where the agent or collector resides.
|
240
240
|
*/
|
241
241
|
agentNetworkInfoList?: AgentNetworkInfoList;
|
242
242
|
/**
|
@@ -244,19 +244,19 @@ declare namespace Discovery {
|
|
244
244
|
*/
|
245
245
|
connectorId?: String;
|
246
246
|
/**
|
247
|
-
* The agent or
|
247
|
+
* The agent or collector version.
|
248
248
|
*/
|
249
249
|
version?: String;
|
250
250
|
/**
|
251
|
-
* The health of the agent
|
251
|
+
* The health of the agent.
|
252
252
|
*/
|
253
253
|
health?: AgentStatus;
|
254
254
|
/**
|
255
|
-
* Time since agent
|
255
|
+
* Time since agent health was reported.
|
256
256
|
*/
|
257
257
|
lastHealthPingTime?: String;
|
258
258
|
/**
|
259
|
-
* Status of the collection process for an agent
|
259
|
+
* Status of the collection process for an agent.
|
260
260
|
*/
|
261
261
|
collectionStatus?: String;
|
262
262
|
/**
|
@@ -270,11 +270,11 @@ declare namespace Discovery {
|
|
270
270
|
}
|
271
271
|
export interface AgentNetworkInfo {
|
272
272
|
/**
|
273
|
-
* The IP address for the host where the agent/
|
273
|
+
* The IP address for the host where the agent/collector resides.
|
274
274
|
*/
|
275
275
|
ipAddress?: String;
|
276
276
|
/**
|
277
|
-
* The MAC address for the host where the agent/
|
277
|
+
* The MAC address for the host where the agent/collector resides.
|
278
278
|
*/
|
279
279
|
macAddress?: String;
|
280
280
|
}
|
@@ -370,7 +370,7 @@ declare namespace Discovery {
|
|
370
370
|
*/
|
371
371
|
status?: ContinuousExportStatus;
|
372
372
|
/**
|
373
|
-
* Contains information about any errors that have occurred. This data type can have the following values: ACCESS_DENIED - You don’t have permission to start Data Exploration in Amazon Athena. Contact your Amazon Web Services administrator for help. For more information, see Setting Up Amazon Web Services Application Discovery Service in the Application Discovery Service User Guide. DELIVERY_STREAM_LIMIT_FAILURE - You reached the limit for Amazon Kinesis Data Firehose delivery streams. Reduce the number of streams or request a limit increase and try again. For more information, see Kinesis Data Streams Limits in the Amazon Kinesis Data Streams Developer Guide. FIREHOSE_ROLE_MISSING - The Data Exploration feature is in an error state because your
|
373
|
+
* Contains information about any errors that have occurred. This data type can have the following values: ACCESS_DENIED - You don’t have permission to start Data Exploration in Amazon Athena. Contact your Amazon Web Services administrator for help. For more information, see Setting Up Amazon Web Services Application Discovery Service in the Application Discovery Service User Guide. DELIVERY_STREAM_LIMIT_FAILURE - You reached the limit for Amazon Kinesis Data Firehose delivery streams. Reduce the number of streams or request a limit increase and try again. For more information, see Kinesis Data Streams Limits in the Amazon Kinesis Data Streams Developer Guide. FIREHOSE_ROLE_MISSING - The Data Exploration feature is in an error state because your user is missing the Amazon Web ServicesApplicationDiscoveryServiceFirehose role. Turn on Data Exploration in Amazon Athena and try again. For more information, see Creating the Amazon Web ServicesApplicationDiscoveryServiceFirehose Role in the Application Discovery Service User Guide. FIREHOSE_STREAM_DOES_NOT_EXIST - The Data Exploration feature is in an error state because your user is missing one or more of the Kinesis data delivery streams. INTERNAL_FAILURE - The Data Exploration feature is in an error state because of an internal failure. Try again later. If this problem persists, contact Amazon Web Services Support. LAKE_FORMATION_ACCESS_DENIED - You don't have sufficient lake formation permissions to start continuous export. For more information, see Upgrading Amazon Web Services Glue Data Permissions to the Amazon Web Services Lake Formation Model in the Amazon Web Services Lake Formation Developer Guide. You can use one of the following two ways to resolve this issue. If you don’t want to use the Lake Formation permission model, you can change the default Data Catalog settings to use only Amazon Web Services Identity and Access Management (IAM) access control for new databases. For more information, see Change Data Catalog Settings in the Lake Formation Developer Guide. You can give the service-linked IAM roles AWSServiceRoleForApplicationDiscoveryServiceContinuousExport and AWSApplicationDiscoveryServiceFirehose the required Lake Formation permissions. For more information, see Granting Database Permissions in the Lake Formation Developer Guide. AWSServiceRoleForApplicationDiscoveryServiceContinuousExport - Grant database creator permissions, which gives the role database creation ability and implicit permissions for any created tables. For more information, see Implicit Lake Formation Permissions in the Lake Formation Developer Guide. AWSApplicationDiscoveryServiceFirehose - Grant describe permissions for all tables in the database. S3_BUCKET_LIMIT_FAILURE - You reached the limit for Amazon S3 buckets. Reduce the number of S3 buckets or request a limit increase and try again. For more information, see Bucket Restrictions and Limitations in the Amazon Simple Storage Service Developer Guide. S3_NOT_SIGNED_UP - Your account is not signed up for the Amazon S3 service. You must sign up before you can use Amazon S3. You can sign up at the following URL: https://aws.amazon.com/s3.
|
374
374
|
*/
|
375
375
|
statusDetail?: StringMax255;
|
376
376
|
/**
|
@@ -456,12 +456,33 @@ declare namespace Discovery {
|
|
456
456
|
unknownAgents: Integer;
|
457
457
|
}
|
458
458
|
export interface CustomerAgentlessCollectorInfo {
|
459
|
+
/**
|
460
|
+
* The number of active Agentless Collector collectors.
|
461
|
+
*/
|
459
462
|
activeAgentlessCollectors: Integer;
|
463
|
+
/**
|
464
|
+
* The number of healthy Agentless Collector collectors.
|
465
|
+
*/
|
460
466
|
healthyAgentlessCollectors: Integer;
|
467
|
+
/**
|
468
|
+
* The number of deny-listed Agentless Collector collectors.
|
469
|
+
*/
|
461
470
|
denyListedAgentlessCollectors: Integer;
|
471
|
+
/**
|
472
|
+
* The number of Agentless Collector collectors with SHUTDOWN status.
|
473
|
+
*/
|
462
474
|
shutdownAgentlessCollectors: Integer;
|
475
|
+
/**
|
476
|
+
* The number of unhealthy Agentless Collector collectors.
|
477
|
+
*/
|
463
478
|
unhealthyAgentlessCollectors: Integer;
|
479
|
+
/**
|
480
|
+
* The total number of Agentless Collector collectors.
|
481
|
+
*/
|
464
482
|
totalAgentlessCollectors: Integer;
|
483
|
+
/**
|
484
|
+
* The number of unknown Agentless Collector collectors.
|
485
|
+
*/
|
465
486
|
unknownAgentlessCollectors: Integer;
|
466
487
|
}
|
467
488
|
export interface CustomerConnectorInfo {
|
@@ -548,7 +569,7 @@ declare namespace Discovery {
|
|
548
569
|
}
|
549
570
|
export interface DescribeAgentsRequest {
|
550
571
|
/**
|
551
|
-
* The agent or the
|
572
|
+
* The agent or the collector IDs for which you want information. If you specify no IDs, the system returns information about all agents/collectors associated with your user.
|
552
573
|
*/
|
553
574
|
agentIds?: AgentIds;
|
554
575
|
/**
|
@@ -556,7 +577,7 @@ declare namespace Discovery {
|
|
556
577
|
*/
|
557
578
|
filters?: Filters;
|
558
579
|
/**
|
559
|
-
* The total number of agents/
|
580
|
+
* The total number of agents/collectors to return in a single page of output. The maximum value is 100.
|
560
581
|
*/
|
561
582
|
maxResults?: Integer;
|
562
583
|
/**
|
@@ -566,7 +587,7 @@ declare namespace Discovery {
|
|
566
587
|
}
|
567
588
|
export interface DescribeAgentsResponse {
|
568
589
|
/**
|
569
|
-
* Lists agents or the
|
590
|
+
* Lists agents or the collector by ID or lists all agents/collectors associated with your user, if you did not specify an agent/collector ID. The output includes agent/collector IDs, IP addresses, media access control (MAC) addresses, agent/collector health, host name where the agent/collector resides, and the version number of each agent/collector.
|
570
591
|
*/
|
571
592
|
agentsInfo?: AgentsInfo;
|
572
593
|
/**
|
@@ -727,14 +748,47 @@ declare namespace Discovery {
|
|
727
748
|
}
|
728
749
|
export interface DisassociateConfigurationItemsFromApplicationResponse {
|
729
750
|
}
|
751
|
+
export type EC2InstanceType = string;
|
752
|
+
export interface Ec2RecommendationsExportPreferences {
|
753
|
+
/**
|
754
|
+
* If set to true, the export preferences is set to Ec2RecommendationsExportPreferences.
|
755
|
+
*/
|
756
|
+
enabled?: ExportEnabled;
|
757
|
+
/**
|
758
|
+
* The recommended EC2 instance type that matches the CPU usage metric of server performance data.
|
759
|
+
*/
|
760
|
+
cpuPerformanceMetricBasis?: UsageMetricBasis;
|
761
|
+
/**
|
762
|
+
* The recommended EC2 instance type that matches the Memory usage metric of server performance data.
|
763
|
+
*/
|
764
|
+
ramPerformanceMetricBasis?: UsageMetricBasis;
|
765
|
+
/**
|
766
|
+
* The target tenancy to use for your recommended EC2 instances.
|
767
|
+
*/
|
768
|
+
tenancy?: Tenancy;
|
769
|
+
/**
|
770
|
+
* An array of instance types to exclude from recommendations.
|
771
|
+
*/
|
772
|
+
excludedInstanceTypes?: ExcludedInstanceTypes;
|
773
|
+
/**
|
774
|
+
* The target Amazon Web Services Region for the recommendations. You can use any of the Region codes available for the chosen service, as listed in Amazon Web Services service endpoints in the Amazon Web Services General Reference.
|
775
|
+
*/
|
776
|
+
preferredRegion?: UserPreferredRegion;
|
777
|
+
/**
|
778
|
+
* The contract type for a reserved instance. If blank, we assume an On-Demand instance is preferred.
|
779
|
+
*/
|
780
|
+
reservedInstanceOptions?: ReservedInstanceOptions;
|
781
|
+
}
|
782
|
+
export type ExcludedInstanceTypes = EC2InstanceType[];
|
730
783
|
export interface ExportConfigurationsResponse {
|
731
784
|
/**
|
732
785
|
* A unique identifier that you can use to query the export status.
|
733
786
|
*/
|
734
787
|
exportId?: ConfigurationsExportId;
|
735
788
|
}
|
736
|
-
export type ExportDataFormat = "CSV"|
|
789
|
+
export type ExportDataFormat = "CSV"|string;
|
737
790
|
export type ExportDataFormats = ExportDataFormat[];
|
791
|
+
export type ExportEnabled = boolean;
|
738
792
|
export interface ExportFilter {
|
739
793
|
/**
|
740
794
|
* A single ExportFilter name. Supported filters: agentIds.
|
@@ -785,6 +839,12 @@ declare namespace Discovery {
|
|
785
839
|
*/
|
786
840
|
requestedEndTime?: TimeStamp;
|
787
841
|
}
|
842
|
+
export interface ExportPreferences {
|
843
|
+
/**
|
844
|
+
* If enabled, exported data includes EC2 instance type matches for on-premises servers discovered through Amazon Web Services Application Discovery Service.
|
845
|
+
*/
|
846
|
+
ec2RecommendationsPreferences?: Ec2RecommendationsExportPreferences;
|
847
|
+
}
|
788
848
|
export type ExportRequestTime = Date;
|
789
849
|
export type ExportStatus = "FAILED"|"SUCCEEDED"|"IN_PROGRESS"|string;
|
790
850
|
export type ExportStatusMessage = string;
|
@@ -838,6 +898,9 @@ declare namespace Discovery {
|
|
838
898
|
* Details about Migration Evaluator collectors, including collector status and health.
|
839
899
|
*/
|
840
900
|
meCollectorSummary?: CustomerMeCollectorInfo;
|
901
|
+
/**
|
902
|
+
* Details about Agentless Collector collectors, including status.
|
903
|
+
*/
|
841
904
|
agentlessCollectorSummary?: CustomerAgentlessCollectorInfo;
|
842
905
|
}
|
843
906
|
export type ImportStatus = "IMPORT_IN_PROGRESS"|"IMPORT_COMPLETE"|"IMPORT_COMPLETE_WITH_ERRORS"|"IMPORT_FAILED"|"IMPORT_FAILED_SERVER_LIMIT_EXCEEDED"|"IMPORT_FAILED_RECORD_LIMIT_EXCEEDED"|"DELETE_IN_PROGRESS"|"DELETE_COMPLETE"|"DELETE_FAILED"|"DELETE_FAILED_LIMIT_EXCEEDED"|"INTERNAL_ERROR"|string;
|
@@ -1006,6 +1069,7 @@ declare namespace Discovery {
|
|
1006
1069
|
}
|
1007
1070
|
export type NeighborDetailsList = NeighborConnectionDetail[];
|
1008
1071
|
export type NextToken = string;
|
1072
|
+
export type OfferingClass = "STANDARD"|"CONVERTIBLE"|string;
|
1009
1073
|
export interface OrderByElement {
|
1010
1074
|
/**
|
1011
1075
|
* The field on which to order.
|
@@ -1018,6 +1082,21 @@ declare namespace Discovery {
|
|
1018
1082
|
}
|
1019
1083
|
export type OrderByElementFieldName = string;
|
1020
1084
|
export type OrderByList = OrderByElement[];
|
1085
|
+
export type PurchasingOption = "ALL_UPFRONT"|"PARTIAL_UPFRONT"|"NO_UPFRONT"|string;
|
1086
|
+
export interface ReservedInstanceOptions {
|
1087
|
+
/**
|
1088
|
+
* The payment plan to use for your Reserved Instance.
|
1089
|
+
*/
|
1090
|
+
purchasingOption: PurchasingOption;
|
1091
|
+
/**
|
1092
|
+
* The flexibility to change the instance types needed for your Reserved Instance.
|
1093
|
+
*/
|
1094
|
+
offeringClass: OfferingClass;
|
1095
|
+
/**
|
1096
|
+
* The preferred duration of the Reserved Instance term.
|
1097
|
+
*/
|
1098
|
+
termLength: TermLength;
|
1099
|
+
}
|
1021
1100
|
export type S3Bucket = string;
|
1022
1101
|
export type S3PresignedUrl = string;
|
1023
1102
|
export type SchemaStorageConfig = {[key: string]: String};
|
@@ -1047,13 +1126,13 @@ declare namespace Discovery {
|
|
1047
1126
|
}
|
1048
1127
|
export interface StartDataCollectionByAgentIdsRequest {
|
1049
1128
|
/**
|
1050
|
-
* The IDs of the agents
|
1129
|
+
* The IDs of the agents from which to start collecting data. If you send a request to an agent ID that you do not have permission to contact, according to your Amazon Web Services account, the service does not throw an exception. Instead, it returns the error in the Description field. If you send a request to multiple agents and you do not have permission to contact some of those agents, the system does not throw an exception. Instead, the system shows Failed in the Description field.
|
1051
1130
|
*/
|
1052
1131
|
agentIds: AgentIds;
|
1053
1132
|
}
|
1054
1133
|
export interface StartDataCollectionByAgentIdsResponse {
|
1055
1134
|
/**
|
1056
|
-
* Information about agents
|
1135
|
+
* Information about agents that were instructed to start collecting data. Information includes the agent ID, a description of the operation performed, and whether the agent configuration was updated.
|
1057
1136
|
*/
|
1058
1137
|
agentsConfigurationStatus?: AgentConfigurationStatusList;
|
1059
1138
|
}
|
@@ -1063,7 +1142,7 @@ declare namespace Discovery {
|
|
1063
1142
|
*/
|
1064
1143
|
exportDataFormat?: ExportDataFormats;
|
1065
1144
|
/**
|
1066
|
-
* If a filter is present, it selects the single agentId of the Application Discovery Agent for which data is exported. The agentId can be found in the results of the DescribeAgents API or CLI. If no filter is present, startTime and endTime are ignored and exported data includes both
|
1145
|
+
* If a filter is present, it selects the single agentId of the Application Discovery Agent for which data is exported. The agentId can be found in the results of the DescribeAgents API or CLI. If no filter is present, startTime and endTime are ignored and exported data includes both Amazon Web Services Application Discovery Service Agentless Collector collectors data and summary data from Application Discovery Agent agents.
|
1067
1146
|
*/
|
1068
1147
|
filters?: ExportFilters;
|
1069
1148
|
/**
|
@@ -1074,6 +1153,10 @@ declare namespace Discovery {
|
|
1074
1153
|
* The end timestamp for exported data from the single Application Discovery Agent selected in the filters. If no value is specified, exported data includes the most recent data collected by the agent.
|
1075
1154
|
*/
|
1076
1155
|
endTime?: TimeStamp;
|
1156
|
+
/**
|
1157
|
+
* Indicates the type of data that needs to be exported. Only one ExportPreferences can be enabled at any time.
|
1158
|
+
*/
|
1159
|
+
preferences?: ExportPreferences;
|
1077
1160
|
}
|
1078
1161
|
export interface StartExportTaskResponse {
|
1079
1162
|
/**
|
@@ -1119,13 +1202,13 @@ declare namespace Discovery {
|
|
1119
1202
|
}
|
1120
1203
|
export interface StopDataCollectionByAgentIdsRequest {
|
1121
1204
|
/**
|
1122
|
-
* The IDs of the agents
|
1205
|
+
* The IDs of the agents from which to stop collecting data.
|
1123
1206
|
*/
|
1124
1207
|
agentIds: AgentIds;
|
1125
1208
|
}
|
1126
1209
|
export interface StopDataCollectionByAgentIdsResponse {
|
1127
1210
|
/**
|
1128
|
-
* Information about the agents
|
1211
|
+
* Information about the agents that were instructed to stop collecting data. Information includes the agent ID, a description of the operation performed, and whether the agent configuration was updated.
|
1129
1212
|
*/
|
1130
1213
|
agentsConfigurationStatus?: AgentConfigurationStatusList;
|
1131
1214
|
}
|
@@ -1155,6 +1238,8 @@ declare namespace Discovery {
|
|
1155
1238
|
export type TagKey = string;
|
1156
1239
|
export type TagSet = Tag[];
|
1157
1240
|
export type TagValue = string;
|
1241
|
+
export type Tenancy = "DEDICATED"|"SHARED"|string;
|
1242
|
+
export type TermLength = "ONE_YEAR"|"THREE_YEAR"|string;
|
1158
1243
|
export type TimeStamp = Date;
|
1159
1244
|
export type ToDeleteIdentifierList = ImportTaskIdentifier[];
|
1160
1245
|
export interface UpdateApplicationRequest {
|
@@ -1173,6 +1258,19 @@ declare namespace Discovery {
|
|
1173
1258
|
}
|
1174
1259
|
export interface UpdateApplicationResponse {
|
1175
1260
|
}
|
1261
|
+
export interface UsageMetricBasis {
|
1262
|
+
/**
|
1263
|
+
* A utilization metric that is used by the recommendations.
|
1264
|
+
*/
|
1265
|
+
name?: UsageMetricBasisName;
|
1266
|
+
/**
|
1267
|
+
* Specifies the percentage of the specified utilization metric that is used by the recommendations.
|
1268
|
+
*/
|
1269
|
+
percentageAdjust?: UsageMetricPercentageAdjust;
|
1270
|
+
}
|
1271
|
+
export type UsageMetricBasisName = string;
|
1272
|
+
export type UsageMetricPercentageAdjust = number;
|
1273
|
+
export type UserPreferredRegion = string;
|
1176
1274
|
export type orderString = "ASC"|"DESC"|string;
|
1177
1275
|
/**
|
1178
1276
|
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
|
package/clients/ec2.d.ts
CHANGED
@@ -1749,11 +1749,11 @@ declare class EC2 extends Service {
|
|
1749
1749
|
*/
|
1750
1750
|
deregisterTransitGatewayMulticastGroupSources(callback?: (err: AWSError, data: EC2.Types.DeregisterTransitGatewayMulticastGroupSourcesResult) => void): Request<EC2.Types.DeregisterTransitGatewayMulticastGroupSourcesResult, AWSError>;
|
1751
1751
|
/**
|
1752
|
-
* Describes attributes of your Amazon Web Services account. The following are the supported account attributes:
|
1752
|
+
* Describes attributes of your Amazon Web Services account. The following are the supported account attributes: default-vpc: The ID of the default VPC for your account, or none. max-instances: This attribute is no longer supported. The returned value does not reflect your actual vCPU limit for running On-Demand Instances. For more information, see On-Demand Instance Limits in the Amazon Elastic Compute Cloud User Guide. max-elastic-ips: The maximum number of Elastic IP addresses that you can allocate. supported-platforms: This attribute is deprecated. vpc-max-elastic-ips: The maximum number of Elastic IP addresses that you can allocate. vpc-max-security-groups-per-interface: The maximum number of security groups that you can assign to a network interface.
|
1753
1753
|
*/
|
1754
1754
|
describeAccountAttributes(params: EC2.Types.DescribeAccountAttributesRequest, callback?: (err: AWSError, data: EC2.Types.DescribeAccountAttributesResult) => void): Request<EC2.Types.DescribeAccountAttributesResult, AWSError>;
|
1755
1755
|
/**
|
1756
|
-
* Describes attributes of your Amazon Web Services account. The following are the supported account attributes:
|
1756
|
+
* Describes attributes of your Amazon Web Services account. The following are the supported account attributes: default-vpc: The ID of the default VPC for your account, or none. max-instances: This attribute is no longer supported. The returned value does not reflect your actual vCPU limit for running On-Demand Instances. For more information, see On-Demand Instance Limits in the Amazon Elastic Compute Cloud User Guide. max-elastic-ips: The maximum number of Elastic IP addresses that you can allocate. supported-platforms: This attribute is deprecated. vpc-max-elastic-ips: The maximum number of Elastic IP addresses that you can allocate. vpc-max-security-groups-per-interface: The maximum number of security groups that you can assign to a network interface.
|
1757
1757
|
*/
|
1758
1758
|
describeAccountAttributes(callback?: (err: AWSError, data: EC2.Types.DescribeAccountAttributesResult) => void): Request<EC2.Types.DescribeAccountAttributesResult, AWSError>;
|
1759
1759
|
/**
|
@@ -6878,6 +6878,7 @@ declare namespace EC2 {
|
|
6878
6878
|
*/
|
6879
6879
|
ParentZoneId?: String;
|
6880
6880
|
}
|
6881
|
+
export type AvailabilityZoneId = string;
|
6881
6882
|
export type AvailabilityZoneList = AvailabilityZone[];
|
6882
6883
|
export interface AvailabilityZoneMessage {
|
6883
6884
|
/**
|
@@ -8457,11 +8458,11 @@ declare namespace EC2 {
|
|
8457
8458
|
/**
|
8458
8459
|
* The Availability Zone in which to create the Capacity Reservation.
|
8459
8460
|
*/
|
8460
|
-
AvailabilityZone?:
|
8461
|
+
AvailabilityZone?: AvailabilityZoneName;
|
8461
8462
|
/**
|
8462
8463
|
* The ID of the Availability Zone in which to create the Capacity Reservation.
|
8463
8464
|
*/
|
8464
|
-
AvailabilityZoneId?:
|
8465
|
+
AvailabilityZoneId?: AvailabilityZoneId;
|
8465
8466
|
/**
|
8466
8467
|
* Indicates the tenancy of the Capacity Reservation. A Capacity Reservation can have one of the following tenancy settings: default - The Capacity Reservation is created on hardware that is shared with other Amazon Web Services accounts. dedicated - The Capacity Reservation is created on single-tenant hardware that is dedicated to a single Amazon Web Services account.
|
8467
8468
|
*/
|
@@ -37216,6 +37217,14 @@ declare namespace EC2 {
|
|
37216
37217
|
* Sends Verified Access logs to Kinesis.
|
37217
37218
|
*/
|
37218
37219
|
KinesisDataFirehose?: VerifiedAccessLogKinesisDataFirehoseDestinationOptions;
|
37220
|
+
/**
|
37221
|
+
* The logging version to use. Valid values: ocsf-0.1 | ocsf-1.0.0-rc.2
|
37222
|
+
*/
|
37223
|
+
LogVersion?: String;
|
37224
|
+
/**
|
37225
|
+
* Include trust data sent by trust providers into the logs.
|
37226
|
+
*/
|
37227
|
+
IncludeTrustContext?: Boolean;
|
37219
37228
|
}
|
37220
37229
|
export interface VerifiedAccessLogS3Destination {
|
37221
37230
|
/**
|
@@ -37270,6 +37279,14 @@ declare namespace EC2 {
|
|
37270
37279
|
* Kinesis logging destination.
|
37271
37280
|
*/
|
37272
37281
|
KinesisDataFirehose?: VerifiedAccessLogKinesisDataFirehoseDestination;
|
37282
|
+
/**
|
37283
|
+
* Describes current setting for the logging version.
|
37284
|
+
*/
|
37285
|
+
LogVersion?: String;
|
37286
|
+
/**
|
37287
|
+
* Describes current setting for including trust data into the logs.
|
37288
|
+
*/
|
37289
|
+
IncludeTrustContext?: Boolean;
|
37273
37290
|
}
|
37274
37291
|
export interface VerifiedAccessTrustProvider {
|
37275
37292
|
/**
|