distilled-aws 0.0.13 → 0.0.16
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/lib/client/api.d.ts.map +1 -1
- package/lib/client/api.js +14 -3
- package/lib/client/api.js.map +1 -1
- package/lib/client/response-parser.d.ts.map +1 -1
- package/lib/client/response-parser.js +14 -2
- package/lib/client/response-parser.js.map +1 -1
- package/lib/debug/error-recorder.d.ts +22 -0
- package/lib/debug/error-recorder.d.ts.map +1 -0
- package/lib/debug/error-recorder.js +106 -0
- package/lib/debug/error-recorder.js.map +1 -0
- package/lib/patch/spec-schema.d.ts +65 -0
- package/lib/patch/spec-schema.d.ts.map +1 -1
- package/lib/patch/spec-schema.js +31 -0
- package/lib/patch/spec-schema.js.map +1 -1
- package/lib/services/bedrock-agentcore-control.d.ts +3 -0
- package/lib/services/bedrock-agentcore-control.d.ts.map +1 -1
- package/lib/services/bedrock-agentcore-control.js +5 -1
- package/lib/services/bedrock-agentcore-control.js.map +1 -1
- package/lib/services/cloudfront.d.ts +83 -83
- package/lib/services/cloudfront.d.ts.map +1 -1
- package/lib/services/cloudfront.js +160 -157
- package/lib/services/cloudfront.js.map +1 -1
- package/lib/services/ec2.d.ts +1539 -924
- package/lib/services/ec2.d.ts.map +1 -1
- package/lib/services/ec2.js +1321 -623
- package/lib/services/ec2.js.map +1 -1
- package/lib/services/glue.d.ts +587 -478
- package/lib/services/glue.d.ts.map +1 -1
- package/lib/services/glue.js +1644 -1509
- package/lib/services/glue.js.map +1 -1
- package/lib/services/iam.d.ts +6 -1
- package/lib/services/iam.d.ts.map +1 -1
- package/lib/services/iam.js +3 -1
- package/lib/services/iam.js.map +1 -1
- package/lib/services/medialive.d.ts +33 -0
- package/lib/services/medialive.d.ts.map +1 -1
- package/lib/services/medialive.js +11 -0
- package/lib/services/medialive.js.map +1 -1
- package/lib/services/s3.d.ts +74 -59
- package/lib/services/s3.d.ts.map +1 -1
- package/lib/services/s3.js +76 -53
- package/lib/services/s3.js.map +1 -1
- package/lib/services/sqs.d.ts +1 -1
- package/lib/services/sqs.d.ts.map +1 -1
- package/lib/services/sqs.js +1 -0
- package/lib/services/sqs.js.map +1 -1
- package/package.json +6 -4
- package/src/client/api.ts +22 -2
- package/src/client/response-parser.ts +15 -2
- package/src/debug/error-recorder.ts +143 -0
- package/src/patch/spec-schema.ts +35 -0
- package/src/services/bedrock-agentcore-control.ts +7 -1
- package/src/services/cloudfront.ts +300 -294
- package/src/services/ec2.ts +2891 -1486
- package/src/services/glue.ts +3550 -3250
- package/src/services/iam.ts +9 -2
- package/src/services/medialive.ts +53 -0
- package/src/services/s3.ts +159 -108
- package/src/services/sqs.ts +2 -0
package/lib/services/glue.d.ts
CHANGED
|
@@ -62,6 +62,7 @@ export type ApplicationArn = string;
|
|
|
62
62
|
export type JobName = string;
|
|
63
63
|
export type RunId = string;
|
|
64
64
|
export type OrchestrationPageSize200 = number;
|
|
65
|
+
export type UUIDv4 = string;
|
|
65
66
|
export type PaginationToken = string;
|
|
66
67
|
export type PredicateString = string;
|
|
67
68
|
export type BooleanNullable = boolean;
|
|
@@ -184,6 +185,7 @@ export type DataQualityObservationDescription = string | redacted.Redacted<strin
|
|
|
184
185
|
export type JsonValue = string;
|
|
185
186
|
export type AttemptCount = number;
|
|
186
187
|
export type OrchestrationMessageString = string;
|
|
188
|
+
export type ByteCount = number;
|
|
187
189
|
export type DoubleValue = number;
|
|
188
190
|
export type IdleTimeout = number;
|
|
189
191
|
export type LongValue = number;
|
|
@@ -1090,6 +1092,11 @@ export interface GetJobsRequest {
|
|
|
1090
1092
|
MaxResults?: number;
|
|
1091
1093
|
}
|
|
1092
1094
|
export declare const GetJobsRequest: S.Schema<GetJobsRequest, GetJobsRequest, never>;
|
|
1095
|
+
export interface GetMaterializedViewRefreshTaskRunRequest {
|
|
1096
|
+
CatalogId: string;
|
|
1097
|
+
MaterializedViewRefreshTaskRunId: string;
|
|
1098
|
+
}
|
|
1099
|
+
export declare const GetMaterializedViewRefreshTaskRunRequest: S.Schema<GetMaterializedViewRefreshTaskRunRequest, GetMaterializedViewRefreshTaskRunRequest, never>;
|
|
1093
1100
|
export interface GetMLTaskRunRequest {
|
|
1094
1101
|
TransformId: string;
|
|
1095
1102
|
TaskRunId: string;
|
|
@@ -1377,6 +1384,14 @@ export interface ListJobsRequest {
|
|
|
1377
1384
|
};
|
|
1378
1385
|
}
|
|
1379
1386
|
export declare const ListJobsRequest: S.Schema<ListJobsRequest, ListJobsRequest, never>;
|
|
1387
|
+
export interface ListMaterializedViewRefreshTaskRunsRequest {
|
|
1388
|
+
CatalogId: string;
|
|
1389
|
+
DatabaseName?: string;
|
|
1390
|
+
TableName?: string;
|
|
1391
|
+
MaxResults?: number;
|
|
1392
|
+
NextToken?: string;
|
|
1393
|
+
}
|
|
1394
|
+
export declare const ListMaterializedViewRefreshTaskRunsRequest: S.Schema<ListMaterializedViewRefreshTaskRunsRequest, ListMaterializedViewRefreshTaskRunsRequest, never>;
|
|
1380
1395
|
export type TransformType = "FIND_MATCHES" | (string & {});
|
|
1381
1396
|
export declare const TransformType: typeof S.String;
|
|
1382
1397
|
export type TransformStatusType = "NOT_READY" | "READY" | "DELETING" | (string & {});
|
|
@@ -1643,6 +1658,13 @@ export interface StartJobRunRequest {
|
|
|
1643
1658
|
ExecutionRoleSessionPolicy?: string;
|
|
1644
1659
|
}
|
|
1645
1660
|
export declare const StartJobRunRequest: S.Schema<StartJobRunRequest, StartJobRunRequest, never>;
|
|
1661
|
+
export interface StartMaterializedViewRefreshTaskRunRequest {
|
|
1662
|
+
CatalogId: string;
|
|
1663
|
+
DatabaseName: string;
|
|
1664
|
+
TableName: string;
|
|
1665
|
+
FullRefresh?: boolean;
|
|
1666
|
+
}
|
|
1667
|
+
export declare const StartMaterializedViewRefreshTaskRunRequest: S.Schema<StartMaterializedViewRefreshTaskRunRequest, StartMaterializedViewRefreshTaskRunRequest, never>;
|
|
1646
1668
|
export interface StartMLEvaluationTaskRunRequest {
|
|
1647
1669
|
TransformId: string;
|
|
1648
1670
|
}
|
|
@@ -1693,6 +1715,15 @@ export declare const StopCrawlerScheduleRequest: S.Schema<StopCrawlerScheduleReq
|
|
|
1693
1715
|
export interface StopCrawlerScheduleResponse {
|
|
1694
1716
|
}
|
|
1695
1717
|
export declare const StopCrawlerScheduleResponse: S.Schema<StopCrawlerScheduleResponse, StopCrawlerScheduleResponse, never>;
|
|
1718
|
+
export interface StopMaterializedViewRefreshTaskRunRequest {
|
|
1719
|
+
CatalogId: string;
|
|
1720
|
+
DatabaseName: string;
|
|
1721
|
+
TableName: string;
|
|
1722
|
+
}
|
|
1723
|
+
export declare const StopMaterializedViewRefreshTaskRunRequest: S.Schema<StopMaterializedViewRefreshTaskRunRequest, StopMaterializedViewRefreshTaskRunRequest, never>;
|
|
1724
|
+
export interface StopMaterializedViewRefreshTaskRunResponse {
|
|
1725
|
+
}
|
|
1726
|
+
export declare const StopMaterializedViewRefreshTaskRunResponse: S.Schema<StopMaterializedViewRefreshTaskRunResponse, StopMaterializedViewRefreshTaskRunResponse, never>;
|
|
1696
1727
|
export interface StopSessionRequest {
|
|
1697
1728
|
Id: string;
|
|
1698
1729
|
RequestOrigin?: string;
|
|
@@ -3263,6 +3294,30 @@ export interface IntegrationResourcePropertyFilter {
|
|
|
3263
3294
|
export declare const IntegrationResourcePropertyFilter: S.Schema<IntegrationResourcePropertyFilter, IntegrationResourcePropertyFilter, never>;
|
|
3264
3295
|
export type IntegrationResourcePropertyFilterList = IntegrationResourcePropertyFilter[];
|
|
3265
3296
|
export declare const IntegrationResourcePropertyFilterList: S.Array$<S.Schema<IntegrationResourcePropertyFilter, IntegrationResourcePropertyFilter, never>>;
|
|
3297
|
+
export type MaterializedViewRefreshState = "STARTING" | "RUNNING" | "SUCCEEDED" | "FAILED" | "STOPPED" | (string & {});
|
|
3298
|
+
export declare const MaterializedViewRefreshState: typeof S.String;
|
|
3299
|
+
export type MaterializedViewRefreshType = "FULL" | "INCREMENTAL" | (string & {});
|
|
3300
|
+
export declare const MaterializedViewRefreshType: typeof S.String;
|
|
3301
|
+
export interface MaterializedViewRefreshTaskRun {
|
|
3302
|
+
CustomerId?: string;
|
|
3303
|
+
MaterializedViewRefreshTaskRunId?: string;
|
|
3304
|
+
DatabaseName?: string;
|
|
3305
|
+
TableName?: string;
|
|
3306
|
+
CatalogId?: string;
|
|
3307
|
+
Role?: string;
|
|
3308
|
+
Status?: MaterializedViewRefreshState;
|
|
3309
|
+
CreationTime?: Date;
|
|
3310
|
+
LastUpdated?: Date;
|
|
3311
|
+
StartTime?: Date;
|
|
3312
|
+
EndTime?: Date;
|
|
3313
|
+
ErrorMessage?: string;
|
|
3314
|
+
DPUSeconds?: number;
|
|
3315
|
+
RefreshType?: MaterializedViewRefreshType;
|
|
3316
|
+
ProcessedBytes?: number;
|
|
3317
|
+
}
|
|
3318
|
+
export declare const MaterializedViewRefreshTaskRun: S.Schema<MaterializedViewRefreshTaskRun, MaterializedViewRefreshTaskRun, never>;
|
|
3319
|
+
export type MaterializedViewRefreshTaskRunsList = MaterializedViewRefreshTaskRun[];
|
|
3320
|
+
export declare const MaterializedViewRefreshTaskRunsList: S.Array$<S.Schema<MaterializedViewRefreshTaskRun, MaterializedViewRefreshTaskRun, never>>;
|
|
3266
3321
|
export type TransformIdList = string[];
|
|
3267
3322
|
export declare const TransformIdList: S.Array$<typeof S.String>;
|
|
3268
3323
|
export type SessionIdList = string[];
|
|
@@ -5524,6 +5579,11 @@ export interface ListJobsResponse {
|
|
|
5524
5579
|
NextToken?: string;
|
|
5525
5580
|
}
|
|
5526
5581
|
export declare const ListJobsResponse: S.Schema<ListJobsResponse, ListJobsResponse, never>;
|
|
5582
|
+
export interface ListMaterializedViewRefreshTaskRunsResponse {
|
|
5583
|
+
MaterializedViewRefreshTaskRuns?: MaterializedViewRefreshTaskRun[];
|
|
5584
|
+
NextToken?: string;
|
|
5585
|
+
}
|
|
5586
|
+
export declare const ListMaterializedViewRefreshTaskRunsResponse: S.Schema<ListMaterializedViewRefreshTaskRunsResponse, ListMaterializedViewRefreshTaskRunsResponse, never>;
|
|
5527
5587
|
export interface ListMLTransformsResponse {
|
|
5528
5588
|
TransformIds: string[];
|
|
5529
5589
|
NextToken?: string;
|
|
@@ -5670,6 +5730,10 @@ export interface StartJobRunResponse {
|
|
|
5670
5730
|
JobRunId?: string;
|
|
5671
5731
|
}
|
|
5672
5732
|
export declare const StartJobRunResponse: S.Schema<StartJobRunResponse, StartJobRunResponse, never>;
|
|
5733
|
+
export interface StartMaterializedViewRefreshTaskRunResponse {
|
|
5734
|
+
MaterializedViewRefreshTaskRunId?: string;
|
|
5735
|
+
}
|
|
5736
|
+
export declare const StartMaterializedViewRefreshTaskRunResponse: S.Schema<StartMaterializedViewRefreshTaskRunResponse, StartMaterializedViewRefreshTaskRunResponse, never>;
|
|
5673
5737
|
export interface StartMLEvaluationTaskRunResponse {
|
|
5674
5738
|
TaskRunId?: string;
|
|
5675
5739
|
}
|
|
@@ -6563,6 +6627,10 @@ export interface GetMappingResponse {
|
|
|
6563
6627
|
Mapping: MappingEntry[];
|
|
6564
6628
|
}
|
|
6565
6629
|
export declare const GetMappingResponse: S.Schema<GetMappingResponse, GetMappingResponse, never>;
|
|
6630
|
+
export interface GetMaterializedViewRefreshTaskRunResponse {
|
|
6631
|
+
MaterializedViewRefreshTaskRun?: MaterializedViewRefreshTaskRun;
|
|
6632
|
+
}
|
|
6633
|
+
export declare const GetMaterializedViewRefreshTaskRunResponse: S.Schema<GetMaterializedViewRefreshTaskRunResponse, GetMaterializedViewRefreshTaskRunResponse, never>;
|
|
6566
6634
|
export interface GetMLTransformsRequest {
|
|
6567
6635
|
NextToken?: string;
|
|
6568
6636
|
MaxResults?: number;
|
|
@@ -7835,6 +7903,14 @@ declare const CrawlerNotRunningException_base: S.TaggedErrorClass<CrawlerNotRunn
|
|
|
7835
7903
|
}>;
|
|
7836
7904
|
export declare class CrawlerNotRunningException extends CrawlerNotRunningException_base {
|
|
7837
7905
|
}
|
|
7906
|
+
declare const InvalidInputException_base: S.TaggedErrorClass<InvalidInputException, "InvalidInputException", {
|
|
7907
|
+
readonly _tag: S.tag<"InvalidInputException">;
|
|
7908
|
+
} & {
|
|
7909
|
+
Message: S.optional<typeof S.String>;
|
|
7910
|
+
FromFederationSource: S.optional<typeof S.Boolean>;
|
|
7911
|
+
}>;
|
|
7912
|
+
export declare class InvalidInputException extends InvalidInputException_base {
|
|
7913
|
+
}
|
|
7838
7914
|
declare const GlueEncryptionException_base: S.TaggedErrorClass<GlueEncryptionException, "GlueEncryptionException", {
|
|
7839
7915
|
readonly _tag: S.tag<"GlueEncryptionException">;
|
|
7840
7916
|
} & {
|
|
@@ -7857,14 +7933,6 @@ declare const FederationSourceException_base: S.TaggedErrorClass<FederationSourc
|
|
|
7857
7933
|
}>;
|
|
7858
7934
|
export declare class FederationSourceException extends FederationSourceException_base {
|
|
7859
7935
|
}
|
|
7860
|
-
declare const InvalidInputException_base: S.TaggedErrorClass<InvalidInputException, "InvalidInputException", {
|
|
7861
|
-
readonly _tag: S.tag<"InvalidInputException">;
|
|
7862
|
-
} & {
|
|
7863
|
-
Message: S.optional<typeof S.String>;
|
|
7864
|
-
FromFederationSource: S.optional<typeof S.Boolean>;
|
|
7865
|
-
}>;
|
|
7866
|
-
export declare class InvalidInputException extends InvalidInputException_base {
|
|
7867
|
-
}
|
|
7868
7936
|
declare const IllegalSessionStateException_base: S.TaggedErrorClass<IllegalSessionStateException, "IllegalSessionStateException", {
|
|
7869
7937
|
readonly _tag: S.tag<"IllegalSessionStateException">;
|
|
7870
7938
|
} & {
|
|
@@ -7929,6 +7997,13 @@ declare const CrawlerStoppingException_base: S.TaggedErrorClass<CrawlerStoppingE
|
|
|
7929
7997
|
}>;
|
|
7930
7998
|
export declare class CrawlerStoppingException extends CrawlerStoppingException_base {
|
|
7931
7999
|
}
|
|
8000
|
+
declare const MaterializedViewRefreshTaskNotRunningException_base: S.TaggedErrorClass<MaterializedViewRefreshTaskNotRunningException, "MaterializedViewRefreshTaskNotRunningException", {
|
|
8001
|
+
readonly _tag: S.tag<"MaterializedViewRefreshTaskNotRunningException">;
|
|
8002
|
+
} & {
|
|
8003
|
+
Message: S.optional<typeof S.String>;
|
|
8004
|
+
}>;
|
|
8005
|
+
export declare class MaterializedViewRefreshTaskNotRunningException extends MaterializedViewRefreshTaskNotRunningException_base {
|
|
8006
|
+
}
|
|
7932
8007
|
declare const IdempotentParameterMismatchException_base: S.TaggedErrorClass<IdempotentParameterMismatchException, "IdempotentParameterMismatchException", {
|
|
7933
8008
|
readonly _tag: S.tag<"IdempotentParameterMismatchException">;
|
|
7934
8009
|
} & {
|
|
@@ -7936,6 +8011,20 @@ declare const IdempotentParameterMismatchException_base: S.TaggedErrorClass<Idem
|
|
|
7936
8011
|
}>;
|
|
7937
8012
|
export declare class IdempotentParameterMismatchException extends IdempotentParameterMismatchException_base {
|
|
7938
8013
|
}
|
|
8014
|
+
declare const OperationNotSupportedException_base: S.TaggedErrorClass<OperationNotSupportedException, "OperationNotSupportedException", {
|
|
8015
|
+
readonly _tag: S.tag<"OperationNotSupportedException">;
|
|
8016
|
+
} & {
|
|
8017
|
+
Message: S.optional<typeof S.String>;
|
|
8018
|
+
}>;
|
|
8019
|
+
export declare class OperationNotSupportedException extends OperationNotSupportedException_base {
|
|
8020
|
+
}
|
|
8021
|
+
declare const ThrottlingException_base: S.TaggedErrorClass<ThrottlingException, "ThrottlingException", {
|
|
8022
|
+
readonly _tag: S.tag<"ThrottlingException">;
|
|
8023
|
+
} & {
|
|
8024
|
+
Message: S.optional<typeof S.String>;
|
|
8025
|
+
}>;
|
|
8026
|
+
export declare class ThrottlingException extends ThrottlingException_base {
|
|
8027
|
+
}
|
|
7939
8028
|
declare const NoScheduleException_base: S.TaggedErrorClass<NoScheduleException, "NoScheduleException", {
|
|
7940
8029
|
readonly _tag: S.tag<"NoScheduleException">;
|
|
7941
8030
|
} & {
|
|
@@ -7950,6 +8039,20 @@ declare const IllegalWorkflowStateException_base: S.TaggedErrorClass<IllegalWork
|
|
|
7950
8039
|
}>;
|
|
7951
8040
|
export declare class IllegalWorkflowStateException extends IllegalWorkflowStateException_base {
|
|
7952
8041
|
}
|
|
8042
|
+
declare const ResourceNumberLimitExceededException_base: S.TaggedErrorClass<ResourceNumberLimitExceededException, "ResourceNumberLimitExceededException", {
|
|
8043
|
+
readonly _tag: S.tag<"ResourceNumberLimitExceededException">;
|
|
8044
|
+
} & {
|
|
8045
|
+
Message: S.optional<typeof S.String>;
|
|
8046
|
+
}>;
|
|
8047
|
+
export declare class ResourceNumberLimitExceededException extends ResourceNumberLimitExceededException_base {
|
|
8048
|
+
}
|
|
8049
|
+
declare const MaterializedViewRefreshTaskRunningException_base: S.TaggedErrorClass<MaterializedViewRefreshTaskRunningException, "MaterializedViewRefreshTaskRunningException", {
|
|
8050
|
+
readonly _tag: S.tag<"MaterializedViewRefreshTaskRunningException">;
|
|
8051
|
+
} & {
|
|
8052
|
+
Message: S.optional<typeof S.String>;
|
|
8053
|
+
}>;
|
|
8054
|
+
export declare class MaterializedViewRefreshTaskRunningException extends MaterializedViewRefreshTaskRunningException_base {
|
|
8055
|
+
}
|
|
7953
8056
|
declare const FederatedResourceAlreadyExistsException_base: S.TaggedErrorClass<FederatedResourceAlreadyExistsException, "FederatedResourceAlreadyExistsException", {
|
|
7954
8057
|
readonly _tag: S.tag<"FederatedResourceAlreadyExistsException">;
|
|
7955
8058
|
} & {
|
|
@@ -8001,26 +8104,12 @@ declare const ResourceNotFoundException_base: S.TaggedErrorClass<ResourceNotFoun
|
|
|
8001
8104
|
});
|
|
8002
8105
|
export declare class ResourceNotFoundException extends ResourceNotFoundException_base {
|
|
8003
8106
|
}
|
|
8004
|
-
declare const
|
|
8005
|
-
readonly _tag: S.tag<"
|
|
8006
|
-
} & {
|
|
8007
|
-
Message: S.optional<typeof S.String>;
|
|
8008
|
-
}>;
|
|
8009
|
-
export declare class ThrottlingException extends ThrottlingException_base {
|
|
8010
|
-
}
|
|
8011
|
-
declare const OperationNotSupportedException_base: S.TaggedErrorClass<OperationNotSupportedException, "OperationNotSupportedException", {
|
|
8012
|
-
readonly _tag: S.tag<"OperationNotSupportedException">;
|
|
8013
|
-
} & {
|
|
8014
|
-
Message: S.optional<typeof S.String>;
|
|
8015
|
-
}>;
|
|
8016
|
-
export declare class OperationNotSupportedException extends OperationNotSupportedException_base {
|
|
8017
|
-
}
|
|
8018
|
-
declare const ResourceNumberLimitExceededException_base: S.TaggedErrorClass<ResourceNumberLimitExceededException, "ResourceNumberLimitExceededException", {
|
|
8019
|
-
readonly _tag: S.tag<"ResourceNumberLimitExceededException">;
|
|
8107
|
+
declare const MaterializedViewRefreshTaskStoppingException_base: S.TaggedErrorClass<MaterializedViewRefreshTaskStoppingException, "MaterializedViewRefreshTaskStoppingException", {
|
|
8108
|
+
readonly _tag: S.tag<"MaterializedViewRefreshTaskStoppingException">;
|
|
8020
8109
|
} & {
|
|
8021
8110
|
Message: S.optional<typeof S.String>;
|
|
8022
8111
|
}>;
|
|
8023
|
-
export declare class
|
|
8112
|
+
export declare class MaterializedViewRefreshTaskStoppingException extends MaterializedViewRefreshTaskStoppingException_base {
|
|
8024
8113
|
}
|
|
8025
8114
|
declare const SchedulerRunningException_base: S.TaggedErrorClass<SchedulerRunningException, "SchedulerRunningException", {
|
|
8026
8115
|
readonly _tag: S.tag<"SchedulerRunningException">;
|
|
@@ -8036,19 +8125,19 @@ declare const ResourceNotReadyException_base: S.TaggedErrorClass<ResourceNotRead
|
|
|
8036
8125
|
}>;
|
|
8037
8126
|
export declare class ResourceNotReadyException extends ResourceNotReadyException_base {
|
|
8038
8127
|
}
|
|
8039
|
-
declare const
|
|
8040
|
-
readonly _tag: S.tag<"
|
|
8128
|
+
declare const VersionMismatchException_base: S.TaggedErrorClass<VersionMismatchException, "VersionMismatchException", {
|
|
8129
|
+
readonly _tag: S.tag<"VersionMismatchException">;
|
|
8041
8130
|
} & {
|
|
8042
8131
|
Message: S.optional<typeof S.String>;
|
|
8043
8132
|
}>;
|
|
8044
|
-
export declare class
|
|
8133
|
+
export declare class VersionMismatchException extends VersionMismatchException_base {
|
|
8045
8134
|
}
|
|
8046
|
-
declare const
|
|
8047
|
-
readonly _tag: S.tag<"
|
|
8135
|
+
declare const SchedulerNotRunningException_base: S.TaggedErrorClass<SchedulerNotRunningException, "SchedulerNotRunningException", {
|
|
8136
|
+
readonly _tag: S.tag<"SchedulerNotRunningException">;
|
|
8048
8137
|
} & {
|
|
8049
8138
|
Message: S.optional<typeof S.String>;
|
|
8050
8139
|
}>;
|
|
8051
|
-
export declare class
|
|
8140
|
+
export declare class SchedulerNotRunningException extends SchedulerNotRunningException_base {
|
|
8052
8141
|
}
|
|
8053
8142
|
declare const MLTransformNotReadyException_base: S.TaggedErrorClass<MLTransformNotReadyException, "MLTransformNotReadyException", {
|
|
8054
8143
|
readonly _tag: S.tag<"MLTransformNotReadyException">;
|
|
@@ -8068,6 +8157,17 @@ declare const IntegrationQuotaExceededFault_base: S.TaggedErrorClass<Integration
|
|
|
8068
8157
|
});
|
|
8069
8158
|
export declare class IntegrationQuotaExceededFault extends IntegrationQuotaExceededFault_base {
|
|
8070
8159
|
}
|
|
8160
|
+
declare const TargetResourceNotFound_base: S.TaggedErrorClass<TargetResourceNotFound, "TargetResourceNotFound", {
|
|
8161
|
+
readonly _tag: S.tag<"TargetResourceNotFound">;
|
|
8162
|
+
} & {
|
|
8163
|
+
Message: S.optional<typeof S.String>;
|
|
8164
|
+
}> & (new (...args: any[]) => {
|
|
8165
|
+
"@alchemy-run/itty-aws/error/categories": {
|
|
8166
|
+
BadRequestError: true;
|
|
8167
|
+
};
|
|
8168
|
+
});
|
|
8169
|
+
export declare class TargetResourceNotFound extends TargetResourceNotFound_base {
|
|
8170
|
+
}
|
|
8071
8171
|
declare const PermissionTypeMismatchException_base: S.TaggedErrorClass<PermissionTypeMismatchException, "PermissionTypeMismatchException", {
|
|
8072
8172
|
readonly _tag: S.tag<"PermissionTypeMismatchException">;
|
|
8073
8173
|
} & {
|
|
@@ -8093,17 +8193,6 @@ declare const InvalidIntegrationStateFault_base: S.TaggedErrorClass<InvalidInteg
|
|
|
8093
8193
|
});
|
|
8094
8194
|
export declare class InvalidIntegrationStateFault extends InvalidIntegrationStateFault_base {
|
|
8095
8195
|
}
|
|
8096
|
-
declare const TargetResourceNotFound_base: S.TaggedErrorClass<TargetResourceNotFound, "TargetResourceNotFound", {
|
|
8097
|
-
readonly _tag: S.tag<"TargetResourceNotFound">;
|
|
8098
|
-
} & {
|
|
8099
|
-
Message: S.optional<typeof S.String>;
|
|
8100
|
-
}> & (new (...args: any[]) => {
|
|
8101
|
-
"@alchemy-run/itty-aws/error/categories": {
|
|
8102
|
-
BadRequestError: true;
|
|
8103
|
-
};
|
|
8104
|
-
});
|
|
8105
|
-
export declare class TargetResourceNotFound extends TargetResourceNotFound_base {
|
|
8106
|
-
}
|
|
8107
8196
|
declare const KMSKeyNotAccessibleFault_base: S.TaggedErrorClass<KMSKeyNotAccessibleFault, "KMSKeyNotAccessibleFault", {
|
|
8108
8197
|
readonly _tag: S.tag<"KMSKeyNotAccessibleFault">;
|
|
8109
8198
|
} & {
|
|
@@ -8115,10 +8204,54 @@ declare const KMSKeyNotAccessibleFault_base: S.TaggedErrorClass<KMSKeyNotAccessi
|
|
|
8115
8204
|
});
|
|
8116
8205
|
export declare class KMSKeyNotAccessibleFault extends KMSKeyNotAccessibleFault_base {
|
|
8117
8206
|
}
|
|
8207
|
+
/**
|
|
8208
|
+
* Updates an existing registry which is used to hold a collection of schemas. The updated properties relate to the registry, and do not modify any of the schemas within the registry.
|
|
8209
|
+
*/
|
|
8210
|
+
export declare const updateRegistry: (input: UpdateRegistryInput) => effect.Effect<UpdateRegistryResponse, AccessDeniedException | ConcurrentModificationException | EntityNotFoundException | InternalServiceException | InvalidInputException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8211
|
+
/**
|
|
8212
|
+
* Updates the description, compatibility setting, or version checkpoint for a schema set.
|
|
8213
|
+
*
|
|
8214
|
+
* For updating the compatibility setting, the call will not validate compatibility for the entire set of schema versions with the new compatibility setting. If the value for `Compatibility` is provided, the `VersionNumber` (a checkpoint) is also required. The API will validate the checkpoint version number for consistency.
|
|
8215
|
+
*
|
|
8216
|
+
* If the value for the `VersionNumber` (checkpoint) is provided, `Compatibility` is optional and this can be used to set/reset a checkpoint for the schema.
|
|
8217
|
+
*
|
|
8218
|
+
* This update will happen only if the schema is in the AVAILABLE state.
|
|
8219
|
+
*/
|
|
8220
|
+
export declare const updateSchema: (input: UpdateSchemaInput) => effect.Effect<UpdateSchemaResponse, AccessDeniedException | ConcurrentModificationException | EntityNotFoundException | InternalServiceException | InvalidInputException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8221
|
+
/**
|
|
8222
|
+
* Annotate all datapoints for a Profile.
|
|
8223
|
+
*/
|
|
8224
|
+
export declare const putDataQualityProfileAnnotation: (input: PutDataQualityProfileAnnotationRequest) => effect.Effect<PutDataQualityProfileAnnotationResponse, EntityNotFoundException | InternalServiceException | InvalidInputException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8225
|
+
/**
|
|
8226
|
+
* Validates the supplied schema. This call has no side effects, it simply validates using the supplied schema using `DataFormat` as the format. Since it does not take a schema set name, no compatibility checks are performed.
|
|
8227
|
+
*/
|
|
8228
|
+
export declare const checkSchemaVersionValidity: (input: CheckSchemaVersionValidityInput) => effect.Effect<CheckSchemaVersionValidityResponse, AccessDeniedException | InternalServiceException | InvalidInputException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8118
8229
|
/**
|
|
8119
8230
|
* Delete the entire registry including schema and all of its versions. To get the status of the delete operation, you can call the `GetRegistry` API after the asynchronous call. Deleting a registry will deactivate all online operations for the registry such as the `UpdateRegistry`, `CreateSchema`, `UpdateSchema`, and `RegisterSchemaVersion` APIs.
|
|
8120
8231
|
*/
|
|
8121
8232
|
export declare const deleteRegistry: (input: DeleteRegistryInput) => effect.Effect<DeleteRegistryResponse, AccessDeniedException | ConcurrentModificationException | EntityNotFoundException | InvalidInputException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8233
|
+
/**
|
|
8234
|
+
* Describes the specified registry in detail.
|
|
8235
|
+
*/
|
|
8236
|
+
export declare const getRegistry: (input: GetRegistryInput) => effect.Effect<GetRegistryResponse, AccessDeniedException | EntityNotFoundException | InternalServiceException | InvalidInputException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8237
|
+
/**
|
|
8238
|
+
* Describes the specified schema in detail.
|
|
8239
|
+
*/
|
|
8240
|
+
export declare const getSchema: (input: GetSchemaInput) => effect.Effect<GetSchemaResponse, AccessDeniedException | EntityNotFoundException | InternalServiceException | InvalidInputException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8241
|
+
/**
|
|
8242
|
+
* Retrieves a schema by the `SchemaDefinition`. The schema definition is sent to the Schema Registry, canonicalized, and hashed. If the hash is matched within the scope of the `SchemaName` or ARN (or the default registry, if none is supplied), that schema’s metadata is returned. Otherwise, a 404 or NotFound error is returned. Schema versions in `Deleted` statuses will not be included in the results.
|
|
8243
|
+
*/
|
|
8244
|
+
export declare const getSchemaByDefinition: (input: GetSchemaByDefinitionInput) => effect.Effect<GetSchemaByDefinitionResponse, AccessDeniedException | EntityNotFoundException | InternalServiceException | InvalidInputException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8245
|
+
/**
|
|
8246
|
+
* Fetches the schema version difference in the specified difference type between two stored schema versions in the Schema Registry.
|
|
8247
|
+
*
|
|
8248
|
+
* This API allows you to compare two schema versions between two schema definitions under the same schema.
|
|
8249
|
+
*/
|
|
8250
|
+
export declare const getSchemaVersionsDiff: (input: GetSchemaVersionsDiffInput) => effect.Effect<GetSchemaVersionsDiffResponse, AccessDeniedException | EntityNotFoundException | InternalServiceException | InvalidInputException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8251
|
+
/**
|
|
8252
|
+
* Removes a key value pair from the schema version metadata for the specified schema version ID.
|
|
8253
|
+
*/
|
|
8254
|
+
export declare const removeSchemaVersionMetadata: (input: RemoveSchemaVersionMetadataInput) => effect.Effect<RemoveSchemaVersionMetadataResponse, AccessDeniedException | EntityNotFoundException | InvalidInputException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8122
8255
|
/**
|
|
8123
8256
|
* Deletes the entire schema set, including the schema set and all of its versions. To get the status of the delete operation, you can call `GetSchema` API after the asynchronous call. Deleting a registry will deactivate all online operations for the schema, such as the `GetSchemaByDefinition`, and `RegisterSchemaVersion` APIs.
|
|
8124
8257
|
*/
|
|
@@ -8169,6 +8302,10 @@ export declare const getDataQualityModelResult: (input: GetDataQualityModelResul
|
|
|
8169
8302
|
* Creates mappings.
|
|
8170
8303
|
*/
|
|
8171
8304
|
export declare const getMapping: (input: GetMappingRequest) => effect.Effect<GetMappingResponse, EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8305
|
+
/**
|
|
8306
|
+
* Get the associated metadata/information for a task run, given a task run ID.
|
|
8307
|
+
*/
|
|
8308
|
+
export declare const getMaterializedViewRefreshTaskRun: (input: GetMaterializedViewRefreshTaskRunRequest) => effect.Effect<GetMaterializedViewRefreshTaskRunResponse, AccessDeniedException | EntityNotFoundException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8172
8309
|
/**
|
|
8173
8310
|
* Gets code to perform a specified mapping.
|
|
8174
8311
|
*/
|
|
@@ -8276,6 +8413,14 @@ export declare const updateJob: (input: UpdateJobRequest) => effect.Effect<Updat
|
|
|
8276
8413
|
* Job arguments may be logged. Do not pass plaintext secrets as arguments. Retrieve secrets from a Glue Connection, Amazon Web Services Secrets Manager or other secret management mechanism if you intend to keep them within the Job.
|
|
8277
8414
|
*/
|
|
8278
8415
|
export declare const updateTrigger: (input: UpdateTriggerRequest) => effect.Effect<UpdateTriggerResponse, ConcurrentModificationException | EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8416
|
+
/**
|
|
8417
|
+
* Update an Glue usage profile.
|
|
8418
|
+
*/
|
|
8419
|
+
export declare const updateUsageProfile: (input: UpdateUsageProfileRequest) => effect.Effect<UpdateUsageProfileResponse, ConcurrentModificationException | EntityNotFoundException | InternalServiceException | InvalidInputException | OperationNotSupportedException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8420
|
+
/**
|
|
8421
|
+
* Deletes an optimizer and all associated metadata for a table. The optimization will no longer be performed on the table.
|
|
8422
|
+
*/
|
|
8423
|
+
export declare const deleteTableOptimizer: (input: DeleteTableOptimizerRequest) => effect.Effect<DeleteTableOptimizerResponse, AccessDeniedException | EntityNotFoundException | InternalServiceException | InvalidInputException | ThrottlingException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8279
8424
|
/**
|
|
8280
8425
|
* Stops the execution of the specified workflow run.
|
|
8281
8426
|
*/
|
|
@@ -8383,73 +8528,193 @@ export declare const listCrawlers: {
|
|
|
8383
8528
|
items: (input: ListCrawlersRequest) => stream.Stream<unknown, OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8384
8529
|
};
|
|
8385
8530
|
/**
|
|
8386
|
-
*
|
|
8531
|
+
* Stops a specified trigger.
|
|
8387
8532
|
*/
|
|
8388
|
-
export declare const
|
|
8533
|
+
export declare const stopTrigger: (input: StopTriggerRequest) => effect.Effect<StopTriggerResponse, ConcurrentModificationException | EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8389
8534
|
/**
|
|
8390
|
-
*
|
|
8535
|
+
* Updates an existing machine learning transform. Call this operation to tune the algorithm parameters to achieve better results.
|
|
8536
|
+
*
|
|
8537
|
+
* After calling this operation, you can call the `StartMLEvaluationTaskRun`
|
|
8538
|
+
* operation to assess how well your new parameters achieved your goals (such as improving the
|
|
8539
|
+
* quality of your machine learning transform, or making it more cost-effective).
|
|
8391
8540
|
*/
|
|
8392
|
-
export declare const
|
|
8541
|
+
export declare const updateMLTransform: (input: UpdateMLTransformRequest) => effect.Effect<UpdateMLTransformResponse, AccessDeniedException | EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8393
8542
|
/**
|
|
8394
|
-
*
|
|
8395
|
-
* of what is scheduled. If the crawler is already running, returns a
|
|
8396
|
-
* CrawlerRunningException.
|
|
8543
|
+
* Updates an existing workflow.
|
|
8397
8544
|
*/
|
|
8398
|
-
export declare const
|
|
8545
|
+
export declare const updateWorkflow: (input: UpdateWorkflowRequest) => effect.Effect<UpdateWorkflowResponse, ConcurrentModificationException | EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8399
8546
|
/**
|
|
8400
|
-
*
|
|
8547
|
+
* Cancels a run where a ruleset is being evaluated against a data source.
|
|
8401
8548
|
*/
|
|
8402
|
-
export declare const
|
|
8549
|
+
export declare const cancelDataQualityRulesetEvaluationRun: (input: CancelDataQualityRulesetEvaluationRunRequest) => effect.Effect<CancelDataQualityRulesetEvaluationRunResponse, EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8403
8550
|
/**
|
|
8404
|
-
*
|
|
8551
|
+
* Removes a classifier from the Data Catalog.
|
|
8405
8552
|
*/
|
|
8406
|
-
export declare const
|
|
8553
|
+
export declare const deleteClassifier: (input: DeleteClassifierRequest) => effect.Effect<DeleteClassifierResponse, EntityNotFoundException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8407
8554
|
/**
|
|
8408
|
-
*
|
|
8409
|
-
*
|
|
8410
|
-
* After completing this operation, you no longer have access to the databases, tables (and all table versions and partitions that might belong to the tables) and the user-defined functions in the deleted catalog. Glue deletes these "orphaned" resources asynchronously in a timely manner, at the discretion of the service.
|
|
8411
|
-
*
|
|
8412
|
-
* To ensure the immediate deletion of all related resources before calling the `DeleteCatalog` operation, use `DeleteTableVersion` (or `BatchDeleteTableVersion`), `DeletePartition` (or `BatchDeletePartition`), `DeleteTable` (or `BatchDeleteTable`), `DeleteUserDefinedFunction` and `DeleteDatabase` to delete any resources that belong to the catalog.
|
|
8555
|
+
* Deletes settings for a column statistics task.
|
|
8413
8556
|
*/
|
|
8414
|
-
export declare const
|
|
8557
|
+
export declare const deleteColumnStatisticsTaskSettings: (input: DeleteColumnStatisticsTaskSettingsRequest) => effect.Effect<DeleteColumnStatisticsTaskSettingsResponse, EntityNotFoundException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8415
8558
|
/**
|
|
8416
|
-
* Deletes a
|
|
8559
|
+
* Deletes a connection from the Data Catalog.
|
|
8417
8560
|
*/
|
|
8418
|
-
export declare const
|
|
8561
|
+
export declare const deleteConnection: (input: DeleteConnectionRequest) => effect.Effect<DeleteConnectionResponse, EntityNotFoundException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8419
8562
|
/**
|
|
8420
|
-
*
|
|
8563
|
+
* Deletes a data quality ruleset.
|
|
8421
8564
|
*/
|
|
8422
|
-
export declare const
|
|
8565
|
+
export declare const deleteDataQualityRuleset: (input: DeleteDataQualityRulesetRequest) => effect.Effect<DeleteDataQualityRulesetResponse, EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8423
8566
|
/**
|
|
8424
|
-
*
|
|
8567
|
+
* Deletes a specified development endpoint.
|
|
8425
8568
|
*/
|
|
8426
|
-
export declare const
|
|
8427
|
-
(input: GetBlueprintRunsRequest): effect.Effect<GetBlueprintRunsResponse, EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8428
|
-
pages: (input: GetBlueprintRunsRequest) => stream.Stream<GetBlueprintRunsResponse, EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8429
|
-
items: (input: GetBlueprintRunsRequest) => stream.Stream<unknown, EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8430
|
-
};
|
|
8569
|
+
export declare const deleteDevEndpoint: (input: DeleteDevEndpointRequest) => effect.Effect<DeleteDevEndpointResponse, EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8431
8570
|
/**
|
|
8432
|
-
*
|
|
8571
|
+
* Deletes a specified partition.
|
|
8433
8572
|
*/
|
|
8434
|
-
export declare const
|
|
8573
|
+
export declare const deletePartition: (input: DeletePartitionRequest) => effect.Effect<DeletePartitionResponse, EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8435
8574
|
/**
|
|
8436
|
-
*
|
|
8575
|
+
* Deletes a specified security configuration.
|
|
8437
8576
|
*/
|
|
8438
|
-
export declare const
|
|
8577
|
+
export declare const deleteSecurityConfiguration: (input: DeleteSecurityConfigurationRequest) => effect.Effect<DeleteSecurityConfigurationResponse, EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8439
8578
|
/**
|
|
8440
|
-
*
|
|
8579
|
+
* Deletes a specified version of a table.
|
|
8441
8580
|
*/
|
|
8442
|
-
export declare const
|
|
8581
|
+
export declare const deleteTableVersion: (input: DeleteTableVersionRequest) => effect.Effect<DeleteTableVersionResponse, EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8443
8582
|
/**
|
|
8444
|
-
*
|
|
8583
|
+
* Deletes an existing function definition from the Data Catalog.
|
|
8445
8584
|
*/
|
|
8446
|
-
export declare const
|
|
8585
|
+
export declare const deleteUserDefinedFunction: (input: DeleteUserDefinedFunctionRequest) => effect.Effect<DeleteUserDefinedFunctionResponse, EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8447
8586
|
/**
|
|
8448
|
-
*
|
|
8587
|
+
* Starts a column statistics task run schedule.
|
|
8449
8588
|
*/
|
|
8450
|
-
export declare const
|
|
8589
|
+
export declare const startColumnStatisticsTaskRunSchedule: (input: StartColumnStatisticsTaskRunScheduleRequest) => effect.Effect<StartColumnStatisticsTaskRunScheduleResponse, AccessDeniedException | EntityNotFoundException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8451
8590
|
/**
|
|
8452
|
-
*
|
|
8591
|
+
* Stops a column statistics task run schedule.
|
|
8592
|
+
*/
|
|
8593
|
+
export declare const stopColumnStatisticsTaskRunSchedule: (input: StopColumnStatisticsTaskRunScheduleRequest) => effect.Effect<StopColumnStatisticsTaskRunScheduleResponse, EntityNotFoundException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8594
|
+
/**
|
|
8595
|
+
* Adds tags to a resource. A tag is a label you can assign to an Amazon Web Services resource.
|
|
8596
|
+
* In Glue, you can tag only certain resources. For information about what
|
|
8597
|
+
* resources you can tag, see Amazon Web Services Tags in Glue.
|
|
8598
|
+
*/
|
|
8599
|
+
export declare const tagResource: (input: TagResourceRequest) => effect.Effect<TagResourceResponse, EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8600
|
+
/**
|
|
8601
|
+
* Removes tags from a resource.
|
|
8602
|
+
*/
|
|
8603
|
+
export declare const untagResource: (input: UntagResourceRequest) => effect.Effect<UntagResourceResponse, EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8604
|
+
/**
|
|
8605
|
+
* Creates a classifier in the user's account. This can be a `GrokClassifier`, an
|
|
8606
|
+
* `XMLClassifier`, a `JsonClassifier`, or a `CsvClassifier`,
|
|
8607
|
+
* depending on which field of the request is present.
|
|
8608
|
+
*/
|
|
8609
|
+
export declare const createClassifier: (input: CreateClassifierRequest) => effect.Effect<CreateClassifierResponse, AlreadyExistsException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8610
|
+
/**
|
|
8611
|
+
* Creates a new Glue Identity Center configuration to enable integration between Glue and Amazon Web Services IAM
|
|
8612
|
+
* Identity Center for authentication and authorization.
|
|
8613
|
+
*/
|
|
8614
|
+
export declare const createGlueIdentityCenterConfiguration: (input: CreateGlueIdentityCenterConfigurationRequest) => effect.Effect<CreateGlueIdentityCenterConfigurationResponse, AccessDeniedException | AlreadyExistsException | ConcurrentModificationException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8615
|
+
/**
|
|
8616
|
+
* Starts a crawl using the specified crawler, regardless
|
|
8617
|
+
* of what is scheduled. If the crawler is already running, returns a
|
|
8618
|
+
* CrawlerRunningException.
|
|
8619
|
+
*/
|
|
8620
|
+
export declare const startCrawler: (input: StartCrawlerRequest) => effect.Effect<StartCrawlerResponse, CrawlerRunningException | EntityNotFoundException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8621
|
+
/**
|
|
8622
|
+
* Deletes the existing Glue Identity Center configuration, removing the integration between Glue and
|
|
8623
|
+
* Amazon Web Services IAM Identity Center.
|
|
8624
|
+
*/
|
|
8625
|
+
export declare const deleteGlueIdentityCenterConfiguration: (input: DeleteGlueIdentityCenterConfigurationRequest) => effect.Effect<DeleteGlueIdentityCenterConfigurationResponse, AccessDeniedException | ConcurrentModificationException | EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8626
|
+
/**
|
|
8627
|
+
* Retrieves the current Glue Identity Center configuration details, including the associated Identity Center instance and
|
|
8628
|
+
* application information.
|
|
8629
|
+
*/
|
|
8630
|
+
export declare const getGlueIdentityCenterConfiguration: (input: GetGlueIdentityCenterConfigurationRequest) => effect.Effect<GetGlueIdentityCenterConfigurationResponse, AccessDeniedException | ConcurrentModificationException | EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8631
|
+
/**
|
|
8632
|
+
* Updates the existing Glue Identity Center configuration, allowing modification of scopes and permissions for the integration.
|
|
8633
|
+
*/
|
|
8634
|
+
export declare const updateGlueIdentityCenterConfiguration: (input: UpdateGlueIdentityCenterConfigurationRequest) => effect.Effect<UpdateGlueIdentityCenterConfigurationResponse, AccessDeniedException | ConcurrentModificationException | EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8635
|
+
/**
|
|
8636
|
+
* Imports an existing Amazon Athena Data Catalog to Glue.
|
|
8637
|
+
*/
|
|
8638
|
+
export declare const importCatalogToGlue: (input: ImportCatalogToGlueRequest) => effect.Effect<ImportCatalogToGlueResponse, InternalServiceException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8639
|
+
/**
|
|
8640
|
+
* Cancels the specified recommendation run that was being used to generate rules.
|
|
8641
|
+
*/
|
|
8642
|
+
export declare const cancelDataQualityRuleRecommendationRun: (input: CancelDataQualityRuleRecommendationRunRequest) => effect.Effect<CancelDataQualityRuleRecommendationRunResponse, EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8643
|
+
/**
|
|
8644
|
+
* Cancels (stops) a task run. Machine learning task runs are asynchronous tasks that Glue runs on your behalf as part of various machine learning workflows. You can cancel a
|
|
8645
|
+
* machine learning task run at any time by calling `CancelMLTaskRun` with a task
|
|
8646
|
+
* run's parent transform's `TransformID` and the task run's `TaskRunId`.
|
|
8647
|
+
*/
|
|
8648
|
+
export declare const cancelMLTaskRun: (input: CancelMLTaskRunRequest) => effect.Effect<CancelMLTaskRunResponse, EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8649
|
+
/**
|
|
8650
|
+
* Deletes an existing blueprint.
|
|
8651
|
+
*/
|
|
8652
|
+
export declare const deleteBlueprint: (input: DeleteBlueprintRequest) => effect.Effect<DeleteBlueprintResponse, InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8653
|
+
/**
|
|
8654
|
+
* Deletes a custom pattern by specifying its name.
|
|
8655
|
+
*/
|
|
8656
|
+
export declare const deleteCustomEntityType: (input: DeleteCustomEntityTypeRequest) => effect.Effect<DeleteCustomEntityTypeResponse, AccessDeniedException | EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8657
|
+
/**
|
|
8658
|
+
* Deletes a specified job definition. If the job definition
|
|
8659
|
+
* is not found, no exception is thrown.
|
|
8660
|
+
*/
|
|
8661
|
+
export declare const deleteJob: (input: DeleteJobRequest) => effect.Effect<DeleteJobResponse, InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8662
|
+
/**
|
|
8663
|
+
* Deletes an Glue machine learning transform. Machine learning transforms are a special
|
|
8664
|
+
* type of transform that use machine learning to learn the details of the transformation to be
|
|
8665
|
+
* performed by learning from examples provided by humans. These transformations are then saved
|
|
8666
|
+
* by Glue. If you no longer need a transform, you can delete it by calling
|
|
8667
|
+
* `DeleteMLTransforms`. However, any Glue jobs that still reference the deleted
|
|
8668
|
+
* transform will no longer succeed.
|
|
8669
|
+
*/
|
|
8670
|
+
export declare const deleteMLTransform: (input: DeleteMLTransformRequest) => effect.Effect<DeleteMLTransformResponse, EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8671
|
+
/**
|
|
8672
|
+
* Deletes a specified policy.
|
|
8673
|
+
*/
|
|
8674
|
+
export declare const deleteResourcePolicy: (input: DeleteResourcePolicyRequest) => effect.Effect<DeleteResourcePolicyResponse, ConditionCheckFailureException | EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8675
|
+
/**
|
|
8676
|
+
* Deletes a specified trigger. If the trigger is not found, no
|
|
8677
|
+
* exception is thrown.
|
|
8678
|
+
*/
|
|
8679
|
+
export declare const deleteTrigger: (input: DeleteTriggerRequest) => effect.Effect<DeleteTriggerResponse, ConcurrentModificationException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8680
|
+
/**
|
|
8681
|
+
* Deletes a workflow.
|
|
8682
|
+
*/
|
|
8683
|
+
export declare const deleteWorkflow: (input: DeleteWorkflowRequest) => effect.Effect<DeleteWorkflowResponse, ConcurrentModificationException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8684
|
+
/**
|
|
8685
|
+
* Retrieves the details of a blueprint.
|
|
8686
|
+
*/
|
|
8687
|
+
export declare const getBlueprint: (input: GetBlueprintRequest) => effect.Effect<GetBlueprintResponse, EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8688
|
+
/**
|
|
8689
|
+
* Retrieves the details of blueprint runs for a specified blueprint.
|
|
8690
|
+
*/
|
|
8691
|
+
export declare const getBlueprintRuns: {
|
|
8692
|
+
(input: GetBlueprintRunsRequest): effect.Effect<GetBlueprintRunsResponse, EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8693
|
+
pages: (input: GetBlueprintRunsRequest) => stream.Stream<GetBlueprintRunsResponse, EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8694
|
+
items: (input: GetBlueprintRunsRequest) => stream.Stream<unknown, EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8695
|
+
};
|
|
8696
|
+
/**
|
|
8697
|
+
* Retrieves the details of a custom pattern by specifying its name.
|
|
8698
|
+
*/
|
|
8699
|
+
export declare const getCustomEntityType: (input: GetCustomEntityTypeRequest) => effect.Effect<GetCustomEntityTypeResponse, AccessDeniedException | EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8700
|
+
/**
|
|
8701
|
+
* Retrieves the security configuration for a specified catalog.
|
|
8702
|
+
*/
|
|
8703
|
+
export declare const getDataCatalogEncryptionSettings: (input: GetDataCatalogEncryptionSettingsRequest) => effect.Effect<GetDataCatalogEncryptionSettingsResponse, InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8704
|
+
/**
|
|
8705
|
+
* Transforms a Python script into a directed acyclic graph (DAG).
|
|
8706
|
+
*/
|
|
8707
|
+
export declare const getDataflowGraph: (input: GetDataflowGraphRequest) => effect.Effect<GetDataflowGraphResponse, InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8708
|
+
/**
|
|
8709
|
+
* Retrieve the training status of the model along with more information (CompletedOn, StartedOn, FailureReason).
|
|
8710
|
+
*/
|
|
8711
|
+
export declare const getDataQualityModel: (input: GetDataQualityModelRequest) => effect.Effect<GetDataQualityModelResponse, EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8712
|
+
/**
|
|
8713
|
+
* Gets the specified recommendation run that was used to generate rules.
|
|
8714
|
+
*/
|
|
8715
|
+
export declare const getDataQualityRuleRecommendationRun: (input: GetDataQualityRuleRecommendationRunRequest) => effect.Effect<GetDataQualityRuleRecommendationRunResponse, EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8716
|
+
/**
|
|
8717
|
+
* Returns an existing ruleset by identifier or name.
|
|
8453
8718
|
*/
|
|
8454
8719
|
export declare const getDataQualityRuleset: (input: GetDataQualityRulesetRequest) => effect.Effect<GetDataQualityRulesetResponse, EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8455
8720
|
/**
|
|
@@ -8498,28 +8763,10 @@ export declare const getJobs: {
|
|
|
8498
8763
|
pages: (input: GetJobsRequest) => stream.Stream<GetJobsResponse, EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8499
8764
|
items: (input: GetJobsRequest) => stream.Stream<Job, EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8500
8765
|
};
|
|
8501
|
-
/**
|
|
8502
|
-
* Describes the specified registry in detail.
|
|
8503
|
-
*/
|
|
8504
|
-
export declare const getRegistry: (input: GetRegistryInput) => effect.Effect<GetRegistryResponse, AccessDeniedException | EntityNotFoundException | InternalServiceException | InvalidInputException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8505
8766
|
/**
|
|
8506
8767
|
* Retrieves a specified resource policy.
|
|
8507
8768
|
*/
|
|
8508
8769
|
export declare const getResourcePolicy: (input: GetResourcePolicyRequest) => effect.Effect<GetResourcePolicyResponse, EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8509
|
-
/**
|
|
8510
|
-
* Describes the specified schema in detail.
|
|
8511
|
-
*/
|
|
8512
|
-
export declare const getSchema: (input: GetSchemaInput) => effect.Effect<GetSchemaResponse, AccessDeniedException | EntityNotFoundException | InternalServiceException | InvalidInputException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8513
|
-
/**
|
|
8514
|
-
* Retrieves a schema by the `SchemaDefinition`. The schema definition is sent to the Schema Registry, canonicalized, and hashed. If the hash is matched within the scope of the `SchemaName` or ARN (or the default registry, if none is supplied), that schema’s metadata is returned. Otherwise, a 404 or NotFound error is returned. Schema versions in `Deleted` statuses will not be included in the results.
|
|
8515
|
-
*/
|
|
8516
|
-
export declare const getSchemaByDefinition: (input: GetSchemaByDefinitionInput) => effect.Effect<GetSchemaByDefinitionResponse, AccessDeniedException | EntityNotFoundException | InternalServiceException | InvalidInputException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8517
|
-
/**
|
|
8518
|
-
* Fetches the schema version difference in the specified difference type between two stored schema versions in the Schema Registry.
|
|
8519
|
-
*
|
|
8520
|
-
* This API allows you to compare two schema versions between two schema definitions under the same schema.
|
|
8521
|
-
*/
|
|
8522
|
-
export declare const getSchemaVersionsDiff: (input: GetSchemaVersionsDiffInput) => effect.Effect<GetSchemaVersionsDiffResponse, AccessDeniedException | EntityNotFoundException | InternalServiceException | InvalidInputException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8523
8770
|
/**
|
|
8524
8771
|
* Retrieves a list of all security configurations.
|
|
8525
8772
|
*/
|
|
@@ -8602,6 +8849,14 @@ export declare const listJobs: {
|
|
|
8602
8849
|
pages: (input: ListJobsRequest) => stream.Stream<ListJobsResponse, EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8603
8850
|
items: (input: ListJobsRequest) => stream.Stream<NameString, EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8604
8851
|
};
|
|
8852
|
+
/**
|
|
8853
|
+
* List all task runs for a particular account.
|
|
8854
|
+
*/
|
|
8855
|
+
export declare const listMaterializedViewRefreshTaskRuns: {
|
|
8856
|
+
(input: ListMaterializedViewRefreshTaskRunsRequest): effect.Effect<ListMaterializedViewRefreshTaskRunsResponse, AccessDeniedException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8857
|
+
pages: (input: ListMaterializedViewRefreshTaskRunsRequest) => stream.Stream<ListMaterializedViewRefreshTaskRunsResponse, AccessDeniedException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8858
|
+
items: (input: ListMaterializedViewRefreshTaskRunsRequest) => stream.Stream<MaterializedViewRefreshTaskRun, AccessDeniedException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8859
|
+
};
|
|
8605
8860
|
/**
|
|
8606
8861
|
* Retrieves a sortable, filterable list of existing Glue machine learning transforms in this Amazon Web Services account,
|
|
8607
8862
|
* or the resources with the specified tag. This operation takes the optional `Tags` field, which you can use as
|
|
@@ -8645,10 +8900,6 @@ export declare const listWorkflows: {
|
|
|
8645
8900
|
* Sets the Data Catalog resource policy for access control.
|
|
8646
8901
|
*/
|
|
8647
8902
|
export declare const putResourcePolicy: (input: PutResourcePolicyRequest) => effect.Effect<PutResourcePolicyResponse, ConditionCheckFailureException | EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8648
|
-
/**
|
|
8649
|
-
* Removes a key value pair from the schema version metadata for the specified schema version ID.
|
|
8650
|
-
*/
|
|
8651
|
-
export declare const removeSchemaVersionMetadata: (input: RemoveSchemaVersionMetadataInput) => effect.Effect<RemoveSchemaVersionMetadataResponse, AccessDeniedException | EntityNotFoundException | InvalidInputException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8652
8903
|
/**
|
|
8653
8904
|
* Resets a bookmark entry.
|
|
8654
8905
|
*
|
|
@@ -8674,230 +8925,244 @@ export declare const resetJobBookmark: (input: ResetJobBookmarkRequest) => effec
|
|
|
8674
8925
|
*/
|
|
8675
8926
|
export declare const startExportLabelsTaskRun: (input: StartExportLabelsTaskRunRequest) => effect.Effect<StartExportLabelsTaskRunResponse, EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8676
8927
|
/**
|
|
8677
|
-
*
|
|
8678
|
-
*/
|
|
8679
|
-
export declare const stopTrigger: (input: StopTriggerRequest) => effect.Effect<StopTriggerResponse, ConcurrentModificationException | EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8680
|
-
/**
|
|
8681
|
-
* Updates an existing machine learning transform. Call this operation to tune the algorithm parameters to achieve better results.
|
|
8682
|
-
*
|
|
8683
|
-
* After calling this operation, you can call the `StartMLEvaluationTaskRun`
|
|
8684
|
-
* operation to assess how well your new parameters achieved your goals (such as improving the
|
|
8685
|
-
* quality of your machine learning transform, or making it more cost-effective).
|
|
8686
|
-
*/
|
|
8687
|
-
export declare const updateMLTransform: (input: UpdateMLTransformRequest) => effect.Effect<UpdateMLTransformResponse, AccessDeniedException | EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8688
|
-
/**
|
|
8689
|
-
* Updates an existing registry which is used to hold a collection of schemas. The updated properties relate to the registry, and do not modify any of the schemas within the registry.
|
|
8690
|
-
*/
|
|
8691
|
-
export declare const updateRegistry: (input: UpdateRegistryInput) => effect.Effect<UpdateRegistryResponse, AccessDeniedException | ConcurrentModificationException | EntityNotFoundException | InternalServiceException | InvalidInputException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8692
|
-
/**
|
|
8693
|
-
* Updates the description, compatibility setting, or version checkpoint for a schema set.
|
|
8694
|
-
*
|
|
8695
|
-
* For updating the compatibility setting, the call will not validate compatibility for the entire set of schema versions with the new compatibility setting. If the value for `Compatibility` is provided, the `VersionNumber` (a checkpoint) is also required. The API will validate the checkpoint version number for consistency.
|
|
8696
|
-
*
|
|
8697
|
-
* If the value for the `VersionNumber` (checkpoint) is provided, `Compatibility` is optional and this can be used to set/reset a checkpoint for the schema.
|
|
8698
|
-
*
|
|
8699
|
-
* This update will happen only if the schema is in the AVAILABLE state.
|
|
8928
|
+
* Deletes a specified batch of versions of a table.
|
|
8700
8929
|
*/
|
|
8701
|
-
export declare const
|
|
8930
|
+
export declare const batchDeleteTableVersion: (input: BatchDeleteTableVersionRequest) => effect.Effect<BatchDeleteTableVersionResponse, EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8702
8931
|
/**
|
|
8703
|
-
*
|
|
8932
|
+
* Retrieves the details for the custom patterns specified by a list of names.
|
|
8704
8933
|
*/
|
|
8705
|
-
export declare const
|
|
8934
|
+
export declare const batchGetCustomEntityTypes: (input: BatchGetCustomEntityTypesRequest) => effect.Effect<BatchGetCustomEntityTypesResponse, InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8706
8935
|
/**
|
|
8707
|
-
*
|
|
8936
|
+
* Retrieves a list of data quality results for the specified result IDs.
|
|
8708
8937
|
*/
|
|
8709
|
-
export declare const
|
|
8938
|
+
export declare const batchGetDataQualityResult: (input: BatchGetDataQualityResultRequest) => effect.Effect<BatchGetDataQualityResultResponse, InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8710
8939
|
/**
|
|
8711
|
-
*
|
|
8940
|
+
* Returns a list of resource metadata for a given list of development endpoint names. After
|
|
8941
|
+
* calling the `ListDevEndpoints` operation, you can call this operation to access the
|
|
8942
|
+
* data to which you have been granted permissions. This operation supports all IAM permissions,
|
|
8943
|
+
* including permission conditions that uses tags.
|
|
8712
8944
|
*/
|
|
8713
|
-
export declare const
|
|
8945
|
+
export declare const batchGetDevEndpoints: (input: BatchGetDevEndpointsRequest) => effect.Effect<BatchGetDevEndpointsResponse, AccessDeniedException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8714
8946
|
/**
|
|
8715
|
-
*
|
|
8947
|
+
* Returns a list of resource metadata for a given list of job names. After calling the `ListJobs` operation, you can call this operation to access the data to which you have been granted permissions. This operation supports all IAM permissions, including permission conditions that uses tags.
|
|
8716
8948
|
*/
|
|
8717
|
-
export declare const
|
|
8949
|
+
export declare const batchGetJobs: (input: BatchGetJobsRequest) => effect.Effect<BatchGetJobsResponse, InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8718
8950
|
/**
|
|
8719
|
-
*
|
|
8951
|
+
* Returns a list of resource metadata for a given list of trigger names. After calling the `ListTriggers` operation, you can call this operation to access the data to which you have been granted permissions. This operation supports all IAM permissions, including permission conditions that uses tags.
|
|
8720
8952
|
*/
|
|
8721
|
-
export declare const
|
|
8953
|
+
export declare const batchGetTriggers: (input: BatchGetTriggersRequest) => effect.Effect<BatchGetTriggersResponse, InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8722
8954
|
/**
|
|
8723
|
-
*
|
|
8955
|
+
* Stops one or more job runs for a specified job definition.
|
|
8724
8956
|
*/
|
|
8725
|
-
export declare const
|
|
8957
|
+
export declare const batchStopJobRun: (input: BatchStopJobRunRequest) => effect.Effect<BatchStopJobRunResponse, InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8726
8958
|
/**
|
|
8727
|
-
*
|
|
8959
|
+
* Creates a new registry which may be used to hold a collection of schemas.
|
|
8728
8960
|
*/
|
|
8729
|
-
export declare const
|
|
8961
|
+
export declare const createRegistry: (input: CreateRegistryInput) => effect.Effect<CreateRegistryResponse, AccessDeniedException | AlreadyExistsException | ConcurrentModificationException | InternalServiceException | InvalidInputException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8730
8962
|
/**
|
|
8731
|
-
*
|
|
8963
|
+
* Tests a connection to a service to validate the service credentials that you provide.
|
|
8964
|
+
*
|
|
8965
|
+
* You can either provide an existing connection name or a `TestConnectionInput` for testing a non-existing connection input. Providing both at the same time will cause an error.
|
|
8966
|
+
*
|
|
8967
|
+
* If the action is successful, the service sends back an HTTP 200 response.
|
|
8732
8968
|
*/
|
|
8733
|
-
export declare const
|
|
8969
|
+
export declare const testConnection: (input: TestConnectionRequest) => effect.Effect<TestConnectionResponse, AccessDeniedException | ConflictException | EntityNotFoundException | FederationSourceException | GlueEncryptionException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8734
8970
|
/**
|
|
8735
|
-
*
|
|
8971
|
+
* Updates an existing catalog's properties in the Glue Data Catalog.
|
|
8736
8972
|
*/
|
|
8737
|
-
export declare const
|
|
8973
|
+
export declare const updateCatalog: (input: UpdateCatalogRequest) => effect.Effect<UpdateCatalogResponse, AccessDeniedException | ConcurrentModificationException | EntityNotFoundException | FederationSourceException | GlueEncryptionException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8738
8974
|
/**
|
|
8739
|
-
*
|
|
8975
|
+
* Removes the specified catalog from the Glue Data Catalog.
|
|
8976
|
+
*
|
|
8977
|
+
* After completing this operation, you no longer have access to the databases, tables (and all table versions and partitions that might belong to the tables) and the user-defined functions in the deleted catalog. Glue deletes these "orphaned" resources asynchronously in a timely manner, at the discretion of the service.
|
|
8978
|
+
*
|
|
8979
|
+
* To ensure the immediate deletion of all related resources before calling the `DeleteCatalog` operation, use `DeleteTableVersion` (or `BatchDeleteTableVersion`), `DeletePartition` (or `BatchDeletePartition`), `DeleteTable` (or `BatchDeleteTable`), `DeleteUserDefinedFunction` and `DeleteDatabase` to delete any resources that belong to the catalog.
|
|
8740
8980
|
*/
|
|
8741
|
-
export declare const
|
|
8981
|
+
export declare const deleteCatalog: (input: DeleteCatalogRequest) => effect.Effect<DeleteCatalogResponse, AccessDeniedException | ConcurrentModificationException | EntityNotFoundException | FederationSourceException | GlueEncryptionException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8742
8982
|
/**
|
|
8743
|
-
*
|
|
8983
|
+
* Lists statements for the session.
|
|
8744
8984
|
*/
|
|
8745
|
-
export declare const
|
|
8985
|
+
export declare const listStatements: (input: ListStatementsRequest) => effect.Effect<ListStatementsResponse, AccessDeniedException | EntityNotFoundException | IllegalSessionStateException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8746
8986
|
/**
|
|
8747
|
-
* Stops
|
|
8987
|
+
* Stops the session.
|
|
8748
8988
|
*/
|
|
8749
|
-
export declare const
|
|
8989
|
+
export declare const stopSession: (input: StopSessionRequest) => effect.Effect<StopSessionResponse, AccessDeniedException | ConcurrentModificationException | IllegalSessionStateException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8750
8990
|
/**
|
|
8751
|
-
*
|
|
8752
|
-
* In Glue, you can tag only certain resources. For information about what
|
|
8753
|
-
* resources you can tag, see Amazon Web Services Tags in Glue.
|
|
8991
|
+
* Cancels the statement.
|
|
8754
8992
|
*/
|
|
8755
|
-
export declare const
|
|
8993
|
+
export declare const cancelStatement: (input: CancelStatementRequest) => effect.Effect<CancelStatementResponse, AccessDeniedException | EntityNotFoundException | IllegalSessionStateException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8756
8994
|
/**
|
|
8757
|
-
*
|
|
8995
|
+
* Starts a job run using a job definition.
|
|
8758
8996
|
*/
|
|
8759
|
-
export declare const
|
|
8997
|
+
export declare const startJobRun: (input: StartJobRunRequest) => effect.Effect<StartJobRunResponse, ConcurrentRunsExceededException | EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8760
8998
|
/**
|
|
8761
|
-
*
|
|
8762
|
-
*
|
|
8763
|
-
*
|
|
8999
|
+
* Starts the active learning workflow for your machine learning transform to improve the
|
|
9000
|
+
* transform's quality by generating label sets and adding labels.
|
|
9001
|
+
*
|
|
9002
|
+
* When the `StartMLLabelingSetGenerationTaskRun` finishes, Glue will have
|
|
9003
|
+
* generated a "labeling set" or a set of questions for humans to answer.
|
|
9004
|
+
*
|
|
9005
|
+
* In the case of the `FindMatches` transform, these questions are of the form,
|
|
9006
|
+
* “What is the correct way to group these rows together into groups composed entirely of
|
|
9007
|
+
* matching records?”
|
|
9008
|
+
*
|
|
9009
|
+
* After the labeling process is finished, you can upload your labels with a call to
|
|
9010
|
+
* `StartImportLabelsTaskRun`. After `StartImportLabelsTaskRun` finishes,
|
|
9011
|
+
* all future runs of the machine learning transform will use the new and improved labels and
|
|
9012
|
+
* perform a higher-quality transformation.
|
|
9013
|
+
*
|
|
9014
|
+
* Note: The role used to write the generated labeling set to the `OutputS3Path` is the role
|
|
9015
|
+
* associated with the Machine Learning Transform, specified in the `CreateMLTransform` API.
|
|
8764
9016
|
*/
|
|
8765
|
-
export declare const
|
|
9017
|
+
export declare const startMLLabelingSetGenerationTaskRun: (input: StartMLLabelingSetGenerationTaskRunRequest) => effect.Effect<StartMLLabelingSetGenerationTaskRunResponse, ConcurrentRunsExceededException | EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8766
9018
|
/**
|
|
8767
|
-
*
|
|
8768
|
-
*
|
|
9019
|
+
* Starts an existing trigger. See Triggering
|
|
9020
|
+
* Jobs for information about how different types of trigger are
|
|
9021
|
+
* started.
|
|
8769
9022
|
*/
|
|
8770
|
-
export declare const
|
|
9023
|
+
export declare const startTrigger: (input: StartTriggerRequest) => effect.Effect<StartTriggerResponse, ConcurrentRunsExceededException | EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8771
9024
|
/**
|
|
8772
|
-
*
|
|
8773
|
-
* Amazon Web Services IAM Identity Center.
|
|
9025
|
+
* Starts a new run of the specified workflow.
|
|
8774
9026
|
*/
|
|
8775
|
-
export declare const
|
|
9027
|
+
export declare const startWorkflowRun: (input: StartWorkflowRunRequest) => effect.Effect<StartWorkflowRunResponse, ConcurrentRunsExceededException | EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8776
9028
|
/**
|
|
8777
|
-
*
|
|
8778
|
-
* application information.
|
|
9029
|
+
* Updates a registered blueprint.
|
|
8779
9030
|
*/
|
|
8780
|
-
export declare const
|
|
9031
|
+
export declare const updateBlueprint: (input: UpdateBlueprintRequest) => effect.Effect<UpdateBlueprintResponse, ConcurrentModificationException | EntityNotFoundException | IllegalBlueprintStateException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8781
9032
|
/**
|
|
8782
|
-
*
|
|
9033
|
+
* Creates settings for a column statistics task.
|
|
8783
9034
|
*/
|
|
8784
|
-
export declare const
|
|
9035
|
+
export declare const createColumnStatisticsTaskSettings: (input: CreateColumnStatisticsTaskSettingsRequest) => effect.Effect<CreateColumnStatisticsTaskSettingsResponse, AccessDeniedException | AlreadyExistsException | ColumnStatisticsTaskRunningException | EntityNotFoundException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8785
9036
|
/**
|
|
8786
|
-
*
|
|
9037
|
+
* Starts a materialized view refresh task run, for a specified table and columns.
|
|
8787
9038
|
*/
|
|
8788
|
-
export declare const
|
|
9039
|
+
export declare const startMaterializedViewRefreshTaskRun: (input: StartMaterializedViewRefreshTaskRunRequest) => effect.Effect<StartMaterializedViewRefreshTaskRunResponse, AccessDeniedException | EntityNotFoundException | InvalidInputException | MaterializedViewRefreshTaskRunningException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8789
9040
|
/**
|
|
8790
|
-
*
|
|
8791
|
-
*
|
|
8792
|
-
*
|
|
9041
|
+
* Creates a custom pattern that is used to detect sensitive data across the columns and rows of your structured data.
|
|
9042
|
+
*
|
|
9043
|
+
* Each custom pattern you create specifies a regular expression and an optional list of context words. If no context words are passed only a regular expression is checked.
|
|
8793
9044
|
*/
|
|
8794
|
-
export declare const
|
|
9045
|
+
export declare const createCustomEntityType: (input: CreateCustomEntityTypeRequest) => effect.Effect<CreateCustomEntityTypeResponse, AccessDeniedException | AlreadyExistsException | IdempotentParameterMismatchException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8795
9046
|
/**
|
|
8796
|
-
*
|
|
9047
|
+
* Deletes the Glue specified usage profile.
|
|
8797
9048
|
*/
|
|
8798
|
-
export declare const
|
|
9049
|
+
export declare const deleteUsageProfile: (input: DeleteUsageProfileRequest) => effect.Effect<DeleteUsageProfileResponse, InternalServiceException | InvalidInputException | OperationNotSupportedException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8799
9050
|
/**
|
|
8800
|
-
*
|
|
9051
|
+
* Retrieves information about the specified Glue usage profile.
|
|
8801
9052
|
*/
|
|
8802
|
-
export declare const
|
|
9053
|
+
export declare const getUsageProfile: (input: GetUsageProfileRequest) => effect.Effect<GetUsageProfileResponse, EntityNotFoundException | InternalServiceException | InvalidInputException | OperationNotSupportedException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8803
9054
|
/**
|
|
8804
|
-
*
|
|
9055
|
+
* List all the Glue usage profiles.
|
|
8805
9056
|
*/
|
|
8806
|
-
export declare const
|
|
9057
|
+
export declare const listUsageProfiles: {
|
|
9058
|
+
(input: ListUsageProfilesRequest): effect.Effect<ListUsageProfilesResponse, InternalServiceException | InvalidInputException | OperationNotSupportedException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9059
|
+
pages: (input: ListUsageProfilesRequest) => stream.Stream<ListUsageProfilesResponse, InternalServiceException | InvalidInputException | OperationNotSupportedException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9060
|
+
items: (input: ListUsageProfilesRequest) => stream.Stream<UsageProfileDefinition, InternalServiceException | InvalidInputException | OperationNotSupportedException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9061
|
+
};
|
|
8807
9062
|
/**
|
|
8808
|
-
*
|
|
8809
|
-
* is not found, no exception is thrown.
|
|
9063
|
+
* Returns the configuration of all optimizers associated with a specified table.
|
|
8810
9064
|
*/
|
|
8811
|
-
export declare const
|
|
9065
|
+
export declare const getTableOptimizer: (input: GetTableOptimizerRequest) => effect.Effect<GetTableOptimizerResponse, AccessDeniedException | EntityNotFoundException | InternalServiceException | InvalidInputException | ThrottlingException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8812
9066
|
/**
|
|
8813
|
-
*
|
|
8814
|
-
* type of transform that use machine learning to learn the details of the transformation to be
|
|
8815
|
-
* performed by learning from examples provided by humans. These transformations are then saved
|
|
8816
|
-
* by Glue. If you no longer need a transform, you can delete it by calling
|
|
8817
|
-
* `DeleteMLTransforms`. However, any Glue jobs that still reference the deleted
|
|
8818
|
-
* transform will no longer succeed.
|
|
9067
|
+
* Restarts selected nodes of a previous partially completed workflow run and resumes the workflow run. The selected nodes and all nodes that are downstream from the selected nodes are run.
|
|
8819
9068
|
*/
|
|
8820
|
-
export declare const
|
|
9069
|
+
export declare const resumeWorkflowRun: (input: ResumeWorkflowRunRequest) => effect.Effect<ResumeWorkflowRunResponse, ConcurrentRunsExceededException | EntityNotFoundException | IllegalWorkflowStateException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8821
9070
|
/**
|
|
8822
|
-
*
|
|
9071
|
+
* Adds a new version to the existing schema. Returns an error if new version of schema does not meet the compatibility requirements of the schema set. This API will not create a new schema set and will return a 404 error if the schema set is not already present in the Schema Registry.
|
|
9072
|
+
*
|
|
9073
|
+
* If this is the first schema definition to be registered in the Schema Registry, this API will store the schema version and return immediately. Otherwise, this call has the potential to run longer than other operations due to compatibility modes. You can call the `GetSchemaVersion` API with the `SchemaVersionId` to check compatibility modes.
|
|
9074
|
+
*
|
|
9075
|
+
* If the same schema definition is already stored in Schema Registry as a version, the schema ID of the existing schema is returned to the caller.
|
|
8823
9076
|
*/
|
|
8824
|
-
export declare const
|
|
9077
|
+
export declare const registerSchemaVersion: (input: RegisterSchemaVersionInput) => effect.Effect<RegisterSchemaVersionResponse, AccessDeniedException | ConcurrentModificationException | EntityNotFoundException | InternalServiceException | InvalidInputException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8825
9078
|
/**
|
|
8826
|
-
*
|
|
8827
|
-
*
|
|
9079
|
+
* Creates a new schema set and registers the schema definition. Returns an error if the schema set already exists without actually registering the version.
|
|
9080
|
+
*
|
|
9081
|
+
* When the schema set is created, a version checkpoint will be set to the first version. Compatibility mode "DISABLED" restricts any additional schema versions from being added after the first schema version. For all other compatibility modes, validation of compatibility settings will be applied only from the second version onwards when the `RegisterSchemaVersion` API is used.
|
|
9082
|
+
*
|
|
9083
|
+
* When this API is called without a `RegistryId`, this will create an entry for a "default-registry" in the registry database tables, if it is not already present.
|
|
8828
9084
|
*/
|
|
8829
|
-
export declare const
|
|
9085
|
+
export declare const createSchema: (input: CreateSchemaInput) => effect.Effect<CreateSchemaResponse, AccessDeniedException | AlreadyExistsException | ConcurrentModificationException | EntityNotFoundException | InternalServiceException | InvalidInputException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8830
9086
|
/**
|
|
8831
|
-
*
|
|
9087
|
+
* Puts the metadata key value pair for a specified schema version ID. A maximum of 10 key value pairs will be allowed per schema version. They can be added over one or more calls.
|
|
8832
9088
|
*/
|
|
8833
|
-
export declare const
|
|
9089
|
+
export declare const putSchemaVersionMetadata: (input: PutSchemaVersionMetadataInput) => effect.Effect<PutSchemaVersionMetadataResponse, AccessDeniedException | AlreadyExistsException | EntityNotFoundException | InvalidInputException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8834
9090
|
/**
|
|
8835
|
-
*
|
|
9091
|
+
* Starts a new run of the specified blueprint.
|
|
8836
9092
|
*/
|
|
8837
|
-
export declare const
|
|
9093
|
+
export declare const startBlueprintRun: (input: StartBlueprintRunRequest) => effect.Effect<StartBlueprintRunResponse, EntityNotFoundException | IllegalBlueprintStateException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8838
9094
|
/**
|
|
8839
|
-
*
|
|
9095
|
+
* Starts a column statistics task run, for a specified table and columns.
|
|
8840
9096
|
*/
|
|
8841
|
-
export declare const
|
|
9097
|
+
export declare const startColumnStatisticsTaskRun: (input: StartColumnStatisticsTaskRunRequest) => effect.Effect<StartColumnStatisticsTaskRunResponse, AccessDeniedException | ColumnStatisticsTaskRunningException | EntityNotFoundException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8842
9098
|
/**
|
|
8843
|
-
*
|
|
8844
|
-
* calling the `ListDevEndpoints` operation, you can call this operation to access the
|
|
8845
|
-
* data to which you have been granted permissions. This operation supports all IAM permissions,
|
|
8846
|
-
* including permission conditions that uses tags.
|
|
9099
|
+
* Updates the specified data quality ruleset.
|
|
8847
9100
|
*/
|
|
8848
|
-
export declare const
|
|
9101
|
+
export declare const updateDataQualityRuleset: (input: UpdateDataQualityRulesetRequest) => effect.Effect<UpdateDataQualityRulesetResponse, AlreadyExistsException | EntityNotFoundException | IdempotentParameterMismatchException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8849
9102
|
/**
|
|
8850
|
-
*
|
|
9103
|
+
* Creates a specified partition index in an existing table.
|
|
8851
9104
|
*/
|
|
8852
|
-
export declare const
|
|
9105
|
+
export declare const createPartitionIndex: (input: CreatePartitionIndexRequest) => effect.Effect<CreatePartitionIndexResponse, AlreadyExistsException | EntityNotFoundException | GlueEncryptionException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8853
9106
|
/**
|
|
8854
|
-
*
|
|
9107
|
+
* Puts the specified workflow run properties for the given workflow run. If a property already exists for the specified run, then it overrides the value otherwise adds the property to existing properties.
|
|
8855
9108
|
*/
|
|
8856
|
-
export declare const
|
|
9109
|
+
export declare const putWorkflowRunProperties: (input: PutWorkflowRunPropertiesRequest) => effect.Effect<PutWorkflowRunPropertiesResponse, AlreadyExistsException | ConcurrentModificationException | EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8857
9110
|
/**
|
|
8858
|
-
*
|
|
9111
|
+
* Enables you to provide additional labels (examples of truth) to be used to teach the
|
|
9112
|
+
* machine learning transform and improve its quality. This API operation is generally used as
|
|
9113
|
+
* part of the active learning workflow that starts with the
|
|
9114
|
+
* `StartMLLabelingSetGenerationTaskRun` call and that ultimately results in
|
|
9115
|
+
* improving the quality of your machine learning transform.
|
|
9116
|
+
*
|
|
9117
|
+
* After the `StartMLLabelingSetGenerationTaskRun` finishes, Glue machine learning
|
|
9118
|
+
* will have generated a series of questions for humans to answer. (Answering these questions is
|
|
9119
|
+
* often called 'labeling' in the machine learning workflows). In the case of the
|
|
9120
|
+
* `FindMatches` transform, these questions are of the form, “What is the correct
|
|
9121
|
+
* way to group these rows together into groups composed entirely of matching records?” After the
|
|
9122
|
+
* labeling process is finished, users upload their answers/labels with a call to
|
|
9123
|
+
* `StartImportLabelsTaskRun`. After `StartImportLabelsTaskRun` finishes,
|
|
9124
|
+
* all future runs of the machine learning transform use the new and improved labels and perform
|
|
9125
|
+
* a higher-quality transformation.
|
|
9126
|
+
*
|
|
9127
|
+
* By default, `StartMLLabelingSetGenerationTaskRun` continually learns from and
|
|
9128
|
+
* combines all labels that you upload unless you set `Replace` to true. If you set
|
|
9129
|
+
* `Replace` to true, `StartImportLabelsTaskRun` deletes and forgets all
|
|
9130
|
+
* previously uploaded labels and learns only from the exact set that you upload. Replacing
|
|
9131
|
+
* labels can be helpful if you realize that you previously uploaded incorrect labels, and you
|
|
9132
|
+
* believe that they are having a negative effect on your transform quality.
|
|
9133
|
+
*
|
|
9134
|
+
* You can check on the status of your task run by calling the `GetMLTaskRun`
|
|
9135
|
+
* operation.
|
|
8859
9136
|
*/
|
|
8860
|
-
export declare const
|
|
9137
|
+
export declare const startImportLabelsTaskRun: (input: StartImportLabelsTaskRunRequest) => effect.Effect<StartImportLabelsTaskRunResponse, EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8861
9138
|
/**
|
|
8862
|
-
*
|
|
9139
|
+
* Registers a blueprint with Glue.
|
|
8863
9140
|
*/
|
|
8864
|
-
export declare const
|
|
9141
|
+
export declare const createBlueprint: (input: CreateBlueprintRequest) => effect.Effect<CreateBlueprintResponse, AlreadyExistsException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8865
9142
|
/**
|
|
8866
|
-
*
|
|
9143
|
+
* Creates a new crawler with specified targets, role, configuration, and optional schedule.
|
|
9144
|
+
* At least one crawl target must be specified, in the `s3Targets` field, the
|
|
9145
|
+
* `jdbcTargets` field, or the `DynamoDBTargets` field.
|
|
8867
9146
|
*/
|
|
8868
|
-
export declare const
|
|
9147
|
+
export declare const createCrawler: (input: CreateCrawlerRequest) => effect.Effect<CreateCrawlerResponse, AlreadyExistsException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8869
9148
|
/**
|
|
8870
|
-
*
|
|
9149
|
+
* Creates a data quality ruleset with DQDL rules applied to a specified Glue table.
|
|
9150
|
+
*
|
|
9151
|
+
* You create the ruleset using the Data Quality Definition Language (DQDL). For more information, see the Glue developer guide.
|
|
8871
9152
|
*/
|
|
8872
|
-
export declare const
|
|
9153
|
+
export declare const createDataQualityRuleset: (input: CreateDataQualityRulesetRequest) => effect.Effect<CreateDataQualityRulesetResponse, AlreadyExistsException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8873
9154
|
/**
|
|
8874
|
-
*
|
|
8875
|
-
* transform's quality by generating label sets and adding labels.
|
|
8876
|
-
*
|
|
8877
|
-
* When the `StartMLLabelingSetGenerationTaskRun` finishes, Glue will have
|
|
8878
|
-
* generated a "labeling set" or a set of questions for humans to answer.
|
|
8879
|
-
*
|
|
8880
|
-
* In the case of the `FindMatches` transform, these questions are of the form,
|
|
8881
|
-
* “What is the correct way to group these rows together into groups composed entirely of
|
|
8882
|
-
* matching records?”
|
|
8883
|
-
*
|
|
8884
|
-
* After the labeling process is finished, you can upload your labels with a call to
|
|
8885
|
-
* `StartImportLabelsTaskRun`. After `StartImportLabelsTaskRun` finishes,
|
|
8886
|
-
* all future runs of the machine learning transform will use the new and improved labels and
|
|
8887
|
-
* perform a higher-quality transformation.
|
|
8888
|
-
*
|
|
8889
|
-
* Note: The role used to write the generated labeling set to the `OutputS3Path` is the role
|
|
8890
|
-
* associated with the Machine Learning Transform, specified in the `CreateMLTransform` API.
|
|
9155
|
+
* Creates a new partition.
|
|
8891
9156
|
*/
|
|
8892
|
-
export declare const
|
|
9157
|
+
export declare const createPartition: (input: CreatePartitionRequest) => effect.Effect<CreatePartitionResponse, AlreadyExistsException | EntityNotFoundException | GlueEncryptionException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8893
9158
|
/**
|
|
8894
|
-
*
|
|
9159
|
+
* Creates a new function definition in the Data Catalog.
|
|
8895
9160
|
*/
|
|
8896
|
-
export declare const
|
|
9161
|
+
export declare const createUserDefinedFunction: (input: CreateUserDefinedFunctionRequest) => effect.Effect<CreateUserDefinedFunctionResponse, AlreadyExistsException | EntityNotFoundException | GlueEncryptionException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8897
9162
|
/**
|
|
8898
|
-
*
|
|
9163
|
+
* Creates a new workflow.
|
|
8899
9164
|
*/
|
|
8900
|
-
export declare const
|
|
9165
|
+
export declare const createWorkflow: (input: CreateWorkflowRequest) => effect.Effect<CreateWorkflowResponse, AlreadyExistsException | ConcurrentModificationException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8901
9166
|
/**
|
|
8902
9167
|
* Deletes a list of connection definitions from the Data Catalog.
|
|
8903
9168
|
*/
|
|
@@ -8914,14 +9179,50 @@ export declare const batchGetBlueprints: (input: BatchGetBlueprintsRequest) => e
|
|
|
8914
9179
|
* Returns a list of resource metadata for a given list of crawler names. After calling the `ListCrawlers` operation, you can call this operation to access the data to which you have been granted permissions. This operation supports all IAM permissions, including permission conditions that uses tags.
|
|
8915
9180
|
*/
|
|
8916
9181
|
export declare const batchGetCrawlers: (input: BatchGetCrawlersRequest) => effect.Effect<BatchGetCrawlersResponse, InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9182
|
+
/**
|
|
9183
|
+
* Returns the configuration for the specified table optimizers.
|
|
9184
|
+
*/
|
|
9185
|
+
export declare const batchGetTableOptimizer: (input: BatchGetTableOptimizerRequest) => effect.Effect<BatchGetTableOptimizerResponse, AccessDeniedException | EntityNotFoundException | InternalServiceException | InvalidInputException | ThrottlingException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9186
|
+
/**
|
|
9187
|
+
* Annotate datapoints over time for a specific data quality statistic.
|
|
9188
|
+
* The API requires both profileID and statisticID as part of the InclusionAnnotation input.
|
|
9189
|
+
* The API only works for a single statisticId across multiple profiles.
|
|
9190
|
+
*/
|
|
9191
|
+
export declare const batchPutDataQualityStatisticAnnotation: (input: BatchPutDataQualityStatisticAnnotationRequest) => effect.Effect<BatchPutDataQualityStatisticAnnotationResponse, EntityNotFoundException | InternalServiceException | InvalidInputException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8917
9192
|
/**
|
|
8918
9193
|
* Updates one or more partitions in a batch operation.
|
|
8919
9194
|
*/
|
|
8920
9195
|
export declare const batchUpdatePartition: (input: BatchUpdatePartitionRequest) => effect.Effect<BatchUpdatePartitionResponse, EntityNotFoundException | GlueEncryptionException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9196
|
+
/**
|
|
9197
|
+
* Creates an Glue machine learning transform. This operation creates the transform and
|
|
9198
|
+
* all the necessary parameters to train it.
|
|
9199
|
+
*
|
|
9200
|
+
* Call this operation as the first step in the process of using a machine learning transform
|
|
9201
|
+
* (such as the `FindMatches` transform) for deduplicating data. You can provide an
|
|
9202
|
+
* optional `Description`, in addition to the parameters that you want to use for your
|
|
9203
|
+
* algorithm.
|
|
9204
|
+
*
|
|
9205
|
+
* You must also specify certain parameters for the tasks that Glue runs on your
|
|
9206
|
+
* behalf as part of learning from your data and creating a high-quality machine learning
|
|
9207
|
+
* transform. These parameters include `Role`, and optionally,
|
|
9208
|
+
* `AllocatedCapacity`, `Timeout`, and `MaxRetries`. For more
|
|
9209
|
+
* information, see Jobs.
|
|
9210
|
+
*/
|
|
9211
|
+
export declare const createMLTransform: (input: CreateMLTransformRequest) => effect.Effect<CreateMLTransformResponse, AccessDeniedException | AlreadyExistsException | IdempotentParameterMismatchException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8921
9212
|
/**
|
|
8922
9213
|
* Transforms a directed acyclic graph (DAG) into code.
|
|
8923
9214
|
*/
|
|
8924
9215
|
export declare const createScript: (input: CreateScriptRequest) => effect.Effect<CreateScriptResponse, InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9216
|
+
/**
|
|
9217
|
+
* Creates a new security configuration. A security configuration is a set of security properties that can be used by Glue. You can use a security configuration to encrypt data at rest. For information about using security configurations in Glue, see Encrypting Data Written by Crawlers, Jobs, and Development Endpoints.
|
|
9218
|
+
*/
|
|
9219
|
+
export declare const createSecurityConfiguration: (input: CreateSecurityConfigurationRequest) => effect.Effect<CreateSecurityConfigurationResponse, AlreadyExistsException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9220
|
+
/**
|
|
9221
|
+
* Creates a new trigger.
|
|
9222
|
+
*
|
|
9223
|
+
* Job arguments may be logged. Do not pass plaintext secrets as arguments. Retrieve secrets from a Glue Connection, Amazon Web Services Secrets Manager or other secret management mechanism if you intend to keep them within the Job.
|
|
9224
|
+
*/
|
|
9225
|
+
export declare const createTrigger: (input: CreateTriggerRequest) => effect.Effect<CreateTriggerResponse, AlreadyExistsException | ConcurrentModificationException | EntityNotFoundException | IdempotentParameterMismatchException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
8925
9226
|
/**
|
|
8926
9227
|
* Removes a specified crawler from the Glue Data Catalog, unless the crawler state is
|
|
8927
9228
|
* `RUNNING`.
|
|
@@ -9007,10 +9308,6 @@ export declare const getPartitionIndexes: {
|
|
|
9007
9308
|
pages: (input: GetPartitionIndexesRequest) => stream.Stream<GetPartitionIndexesResponse, ConflictException | EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9008
9309
|
items: (input: GetPartitionIndexesRequest) => stream.Stream<PartitionIndexDescriptor, ConflictException | EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9009
9310
|
};
|
|
9010
|
-
/**
|
|
9011
|
-
* Returns the configuration of all optimizers associated with a specified table.
|
|
9012
|
-
*/
|
|
9013
|
-
export declare const getTableOptimizer: (input: GetTableOptimizerRequest) => effect.Effect<GetTableOptimizerResponse, AccessDeniedException | EntityNotFoundException | InternalServiceException | InvalidInputException | ThrottlingException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9014
9311
|
/**
|
|
9015
9312
|
* Retrieves the metadata for a given workflow run. Job run history is accessible for 90 days for your workflow and job run.
|
|
9016
9313
|
*/
|
|
@@ -9075,30 +9372,22 @@ export declare const listDataQualityRulesets: {
|
|
|
9075
9372
|
export declare const listDataQualityStatisticAnnotations: (input: ListDataQualityStatisticAnnotationsRequest) => effect.Effect<ListDataQualityStatisticAnnotationsResponse, InternalServiceException | InvalidInputException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9076
9373
|
/**
|
|
9077
9374
|
* Retrieves a list of data quality statistics.
|
|
9078
|
-
*/
|
|
9079
|
-
export declare const listDataQualityStatistics: (input: ListDataQualityStatisticsRequest) => effect.Effect<ListDataQualityStatisticsResponse, EntityNotFoundException | InternalServiceException | InvalidInputException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9080
|
-
/**
|
|
9081
|
-
* List integration resource properties for a single customer. It supports the filters, maxRecords and markers.
|
|
9082
|
-
*/
|
|
9083
|
-
export declare const listIntegrationResourceProperties: (input: ListIntegrationResourcePropertiesRequest) => effect.Effect<ListIntegrationResourcePropertiesResponse, AccessDeniedException | EntityNotFoundException | InternalServerException | InternalServiceException | InvalidInputException | ResourceNotFoundException | ValidationException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9084
|
-
/**
|
|
9085
|
-
* List all the Glue usage profiles.
|
|
9086
|
-
*/
|
|
9087
|
-
export declare const listUsageProfiles: {
|
|
9088
|
-
(input: ListUsageProfilesRequest): effect.Effect<ListUsageProfilesResponse, InternalServiceException | InvalidInputException | OperationNotSupportedException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9089
|
-
pages: (input: ListUsageProfilesRequest) => stream.Stream<ListUsageProfilesResponse, InternalServiceException | InvalidInputException | OperationNotSupportedException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9090
|
-
items: (input: ListUsageProfilesRequest) => stream.Stream<UsageProfileDefinition, InternalServiceException | InvalidInputException | OperationNotSupportedException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9091
|
-
};
|
|
9375
|
+
*/
|
|
9376
|
+
export declare const listDataQualityStatistics: (input: ListDataQualityStatisticsRequest) => effect.Effect<ListDataQualityStatisticsResponse, EntityNotFoundException | InternalServiceException | InvalidInputException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9092
9377
|
/**
|
|
9093
|
-
*
|
|
9378
|
+
* List integration resource properties for a single customer. It supports the filters, maxRecords and markers.
|
|
9094
9379
|
*/
|
|
9095
|
-
export declare const
|
|
9380
|
+
export declare const listIntegrationResourceProperties: (input: ListIntegrationResourcePropertiesRequest) => effect.Effect<ListIntegrationResourcePropertiesResponse, AccessDeniedException | EntityNotFoundException | InternalServerException | InternalServiceException | InvalidInputException | ResourceNotFoundException | ValidationException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9096
9381
|
/**
|
|
9097
9382
|
* Starts a recommendation run that is used to generate rules when you don't know what rules to write. Glue Data Quality analyzes the data and comes up with recommendations for a potential ruleset. You can then triage the ruleset and modify the generated ruleset to your liking.
|
|
9098
9383
|
*
|
|
9099
9384
|
* Recommendation runs are automatically deleted after 90 days.
|
|
9100
9385
|
*/
|
|
9101
9386
|
export declare const startDataQualityRuleRecommendationRun: (input: StartDataQualityRuleRecommendationRunRequest) => effect.Effect<StartDataQualityRuleRecommendationRunResponse, ConflictException | InternalServiceException | InvalidInputException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9387
|
+
/**
|
|
9388
|
+
* Stops a materialized view refresh task run, for a specified table and columns.
|
|
9389
|
+
*/
|
|
9390
|
+
export declare const stopMaterializedViewRefreshTaskRun: (input: StopMaterializedViewRefreshTaskRunRequest) => effect.Effect<StopMaterializedViewRefreshTaskRunResponse, AccessDeniedException | InvalidInputException | MaterializedViewRefreshTaskNotRunningException | MaterializedViewRefreshTaskStoppingException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9102
9391
|
/**
|
|
9103
9392
|
* Changes the schedule state of the specified crawler to
|
|
9104
9393
|
* `SCHEDULED`, unless the crawler is already running or the
|
|
@@ -9123,12 +9412,22 @@ export declare const createCatalog: (input: CreateCatalogRequest) => effect.Effe
|
|
|
9123
9412
|
* table.
|
|
9124
9413
|
*/
|
|
9125
9414
|
export declare const batchDeleteTable: (input: BatchDeleteTableRequest) => effect.Effect<BatchDeleteTableResponse, EntityNotFoundException | GlueEncryptionException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNotReadyException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9415
|
+
/**
|
|
9416
|
+
* Modifies an existing classifier (a `GrokClassifier`,
|
|
9417
|
+
* an `XMLClassifier`, a `JsonClassifier`, or a `CsvClassifier`, depending on
|
|
9418
|
+
* which field is present).
|
|
9419
|
+
*/
|
|
9420
|
+
export declare const updateClassifier: (input: UpdateClassifierRequest) => effect.Effect<UpdateClassifierResponse, EntityNotFoundException | InvalidInputException | OperationTimeoutException | VersionMismatchException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9126
9421
|
/**
|
|
9127
9422
|
* Sets the schedule state of the specified crawler to
|
|
9128
9423
|
* `NOT_SCHEDULED`, but does not stop the crawler if it is
|
|
9129
9424
|
* already running.
|
|
9130
9425
|
*/
|
|
9131
9426
|
export declare const stopCrawlerSchedule: (input: StopCrawlerScheduleRequest) => effect.Effect<StopCrawlerScheduleResponse, EntityNotFoundException | OperationTimeoutException | SchedulerNotRunningException | SchedulerTransitioningException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9427
|
+
/**
|
|
9428
|
+
* Updates the schedule of a crawler using a `cron` expression.
|
|
9429
|
+
*/
|
|
9430
|
+
export declare const updateCrawlerSchedule: (input: UpdateCrawlerScheduleRequest) => effect.Effect<UpdateCrawlerScheduleResponse, EntityNotFoundException | InvalidInputException | OperationTimeoutException | SchedulerTransitioningException | VersionMismatchException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9132
9431
|
/**
|
|
9133
9432
|
* Retrieves the definition of a specified database.
|
|
9134
9433
|
*/
|
|
@@ -9176,12 +9475,6 @@ export declare const deleteTable: (input: DeleteTableRequest) => effect.Effect<D
|
|
|
9176
9475
|
* Creates a new database in a Data Catalog.
|
|
9177
9476
|
*/
|
|
9178
9477
|
export declare const createDatabase: (input: CreateDatabaseRequest) => effect.Effect<CreateDatabaseResponse, AlreadyExistsException | ConcurrentModificationException | FederatedResourceAlreadyExistsException | FederationSourceException | FederationSourceRetryableException | GlueEncryptionException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9179
|
-
/**
|
|
9180
|
-
* Modifies an existing classifier (a `GrokClassifier`,
|
|
9181
|
-
* an `XMLClassifier`, a `JsonClassifier`, or a `CsvClassifier`, depending on
|
|
9182
|
-
* which field is present).
|
|
9183
|
-
*/
|
|
9184
|
-
export declare const updateClassifier: (input: UpdateClassifierRequest) => effect.Effect<UpdateClassifierResponse, EntityNotFoundException | InvalidInputException | OperationTimeoutException | VersionMismatchException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9185
9478
|
/**
|
|
9186
9479
|
* Returns information on a job bookmark entry.
|
|
9187
9480
|
*
|
|
@@ -9218,6 +9511,26 @@ export declare const updateJobFromSourceControl: (input: UpdateJobFromSourceCont
|
|
|
9218
9511
|
* This API supports optional parameters which take in the repository information.
|
|
9219
9512
|
*/
|
|
9220
9513
|
export declare const updateSourceControlFromJob: (input: UpdateSourceControlFromJobRequest) => effect.Effect<UpdateSourceControlFromJobResponse, AccessDeniedException | AlreadyExistsException | EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | ValidationException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9514
|
+
/**
|
|
9515
|
+
* Executes the statement.
|
|
9516
|
+
*/
|
|
9517
|
+
export declare const runStatement: (input: RunStatementRequest) => effect.Effect<RunStatementResponse, AccessDeniedException | EntityNotFoundException | IllegalSessionStateException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | ValidationException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9518
|
+
/**
|
|
9519
|
+
* Creates a new development endpoint.
|
|
9520
|
+
*/
|
|
9521
|
+
export declare const createDevEndpoint: (input: CreateDevEndpointRequest) => effect.Effect<CreateDevEndpointResponse, AccessDeniedException | AlreadyExistsException | IdempotentParameterMismatchException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | ValidationException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9522
|
+
/**
|
|
9523
|
+
* Creates a new session.
|
|
9524
|
+
*/
|
|
9525
|
+
export declare const createSession: (input: CreateSessionRequest) => effect.Effect<CreateSessionResponse, AccessDeniedException | AlreadyExistsException | IdempotentParameterMismatchException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | ValidationException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9526
|
+
/**
|
|
9527
|
+
* Updates the configuration for an existing table optimizer.
|
|
9528
|
+
*/
|
|
9529
|
+
export declare const updateTableOptimizer: (input: UpdateTableOptimizerRequest) => effect.Effect<UpdateTableOptimizerResponse, AccessDeniedException | ConcurrentModificationException | EntityNotFoundException | InternalServiceException | InvalidInputException | ThrottlingException | ValidationException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9530
|
+
/**
|
|
9531
|
+
* Creates a new table optimizer for a specific function.
|
|
9532
|
+
*/
|
|
9533
|
+
export declare const createTableOptimizer: (input: CreateTableOptimizerRequest) => effect.Effect<CreateTableOptimizerResponse, AccessDeniedException | AlreadyExistsException | EntityNotFoundException | InternalServiceException | InvalidInputException | ThrottlingException | ValidationException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9221
9534
|
/**
|
|
9222
9535
|
* Provides details regarding the entity used with the connection type, with a description of the data model for each field in the selected entity.
|
|
9223
9536
|
*
|
|
@@ -9262,206 +9575,6 @@ export declare const createIntegrationResourceProperty: (input: CreateIntegratio
|
|
|
9262
9575
|
* This API is used to provide optional override properties for the the tables that need to be replicated. These properties can include properties for filtering and partitioning for the source and target tables. To set both source and target properties the same API need to be invoked with the Glue connection ARN as `ResourceArn` with `SourceTableConfig`, and the Glue database ARN as `ResourceArn` with `TargetTableConfig` respectively.
|
|
9263
9576
|
*/
|
|
9264
9577
|
export declare const createIntegrationTableProperties: (input: CreateIntegrationTablePropertiesRequest) => effect.Effect<CreateIntegrationTablePropertiesResponse, AccessDeniedException | EntityNotFoundException | InternalServerException | InternalServiceException | InvalidInputException | ResourceNotFoundException | ValidationException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9265
|
-
/**
|
|
9266
|
-
* Deletes an optimizer and all associated metadata for a table. The optimization will no longer be performed on the table.
|
|
9267
|
-
*/
|
|
9268
|
-
export declare const deleteTableOptimizer: (input: DeleteTableOptimizerRequest) => effect.Effect<DeleteTableOptimizerResponse, AccessDeniedException | EntityNotFoundException | InternalServiceException | InvalidInputException | ThrottlingException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9269
|
-
/**
|
|
9270
|
-
* Updates the configuration for an existing table optimizer.
|
|
9271
|
-
*/
|
|
9272
|
-
export declare const updateTableOptimizer: (input: UpdateTableOptimizerRequest) => effect.Effect<UpdateTableOptimizerResponse, AccessDeniedException | ConcurrentModificationException | EntityNotFoundException | InternalServiceException | InvalidInputException | ThrottlingException | ValidationException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9273
|
-
/**
|
|
9274
|
-
* Returns the configuration for the specified table optimizers.
|
|
9275
|
-
*/
|
|
9276
|
-
export declare const batchGetTableOptimizer: (input: BatchGetTableOptimizerRequest) => effect.Effect<BatchGetTableOptimizerResponse, AccessDeniedException | EntityNotFoundException | InternalServiceException | InvalidInputException | ThrottlingException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9277
|
-
/**
|
|
9278
|
-
* Creates a new table optimizer for a specific function.
|
|
9279
|
-
*/
|
|
9280
|
-
export declare const createTableOptimizer: (input: CreateTableOptimizerRequest) => effect.Effect<CreateTableOptimizerResponse, AccessDeniedException | AlreadyExistsException | EntityNotFoundException | InternalServiceException | InvalidInputException | ThrottlingException | ValidationException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9281
|
-
/**
|
|
9282
|
-
* Deletes the Glue specified usage profile.
|
|
9283
|
-
*/
|
|
9284
|
-
export declare const deleteUsageProfile: (input: DeleteUsageProfileRequest) => effect.Effect<DeleteUsageProfileResponse, InternalServiceException | InvalidInputException | OperationNotSupportedException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9285
|
-
/**
|
|
9286
|
-
* Retrieves information about the specified Glue usage profile.
|
|
9287
|
-
*/
|
|
9288
|
-
export declare const getUsageProfile: (input: GetUsageProfileRequest) => effect.Effect<GetUsageProfileResponse, EntityNotFoundException | InternalServiceException | InvalidInputException | OperationNotSupportedException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9289
|
-
/**
|
|
9290
|
-
* Update an Glue usage profile.
|
|
9291
|
-
*/
|
|
9292
|
-
export declare const updateUsageProfile: (input: UpdateUsageProfileRequest) => effect.Effect<UpdateUsageProfileResponse, ConcurrentModificationException | EntityNotFoundException | InternalServiceException | InvalidInputException | OperationNotSupportedException | OperationTimeoutException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9293
|
-
/**
|
|
9294
|
-
* Starts a new run of the specified blueprint.
|
|
9295
|
-
*/
|
|
9296
|
-
export declare const startBlueprintRun: (input: StartBlueprintRunRequest) => effect.Effect<StartBlueprintRunResponse, EntityNotFoundException | IllegalBlueprintStateException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9297
|
-
/**
|
|
9298
|
-
* Starts a column statistics task run, for a specified table and columns.
|
|
9299
|
-
*/
|
|
9300
|
-
export declare const startColumnStatisticsTaskRun: (input: StartColumnStatisticsTaskRunRequest) => effect.Effect<StartColumnStatisticsTaskRunResponse, AccessDeniedException | ColumnStatisticsTaskRunningException | EntityNotFoundException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9301
|
-
/**
|
|
9302
|
-
* Updates the specified data quality ruleset.
|
|
9303
|
-
*/
|
|
9304
|
-
export declare const updateDataQualityRuleset: (input: UpdateDataQualityRulesetRequest) => effect.Effect<UpdateDataQualityRulesetResponse, AlreadyExistsException | EntityNotFoundException | IdempotentParameterMismatchException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9305
|
-
/**
|
|
9306
|
-
* Creates a specified partition index in an existing table.
|
|
9307
|
-
*/
|
|
9308
|
-
export declare const createPartitionIndex: (input: CreatePartitionIndexRequest) => effect.Effect<CreatePartitionIndexResponse, AlreadyExistsException | EntityNotFoundException | GlueEncryptionException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9309
|
-
/**
|
|
9310
|
-
* Tests a connection to a service to validate the service credentials that you provide.
|
|
9311
|
-
*
|
|
9312
|
-
* You can either provide an existing connection name or a `TestConnectionInput` for testing a non-existing connection input. Providing both at the same time will cause an error.
|
|
9313
|
-
*
|
|
9314
|
-
* If the action is successful, the service sends back an HTTP 200 response.
|
|
9315
|
-
*/
|
|
9316
|
-
export declare const testConnection: (input: TestConnectionRequest) => effect.Effect<TestConnectionResponse, AccessDeniedException | ConflictException | EntityNotFoundException | FederationSourceException | GlueEncryptionException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9317
|
-
/**
|
|
9318
|
-
* Adds a new version to the existing schema. Returns an error if new version of schema does not meet the compatibility requirements of the schema set. This API will not create a new schema set and will return a 404 error if the schema set is not already present in the Schema Registry.
|
|
9319
|
-
*
|
|
9320
|
-
* If this is the first schema definition to be registered in the Schema Registry, this API will store the schema version and return immediately. Otherwise, this call has the potential to run longer than other operations due to compatibility modes. You can call the `GetSchemaVersion` API with the `SchemaVersionId` to check compatibility modes.
|
|
9321
|
-
*
|
|
9322
|
-
* If the same schema definition is already stored in Schema Registry as a version, the schema ID of the existing schema is returned to the caller.
|
|
9323
|
-
*/
|
|
9324
|
-
export declare const registerSchemaVersion: (input: RegisterSchemaVersionInput) => effect.Effect<RegisterSchemaVersionResponse, AccessDeniedException | ConcurrentModificationException | EntityNotFoundException | InternalServiceException | InvalidInputException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9325
|
-
/**
|
|
9326
|
-
* Enables you to provide additional labels (examples of truth) to be used to teach the
|
|
9327
|
-
* machine learning transform and improve its quality. This API operation is generally used as
|
|
9328
|
-
* part of the active learning workflow that starts with the
|
|
9329
|
-
* `StartMLLabelingSetGenerationTaskRun` call and that ultimately results in
|
|
9330
|
-
* improving the quality of your machine learning transform.
|
|
9331
|
-
*
|
|
9332
|
-
* After the `StartMLLabelingSetGenerationTaskRun` finishes, Glue machine learning
|
|
9333
|
-
* will have generated a series of questions for humans to answer. (Answering these questions is
|
|
9334
|
-
* often called 'labeling' in the machine learning workflows). In the case of the
|
|
9335
|
-
* `FindMatches` transform, these questions are of the form, “What is the correct
|
|
9336
|
-
* way to group these rows together into groups composed entirely of matching records?” After the
|
|
9337
|
-
* labeling process is finished, users upload their answers/labels with a call to
|
|
9338
|
-
* `StartImportLabelsTaskRun`. After `StartImportLabelsTaskRun` finishes,
|
|
9339
|
-
* all future runs of the machine learning transform use the new and improved labels and perform
|
|
9340
|
-
* a higher-quality transformation.
|
|
9341
|
-
*
|
|
9342
|
-
* By default, `StartMLLabelingSetGenerationTaskRun` continually learns from and
|
|
9343
|
-
* combines all labels that you upload unless you set `Replace` to true. If you set
|
|
9344
|
-
* `Replace` to true, `StartImportLabelsTaskRun` deletes and forgets all
|
|
9345
|
-
* previously uploaded labels and learns only from the exact set that you upload. Replacing
|
|
9346
|
-
* labels can be helpful if you realize that you previously uploaded incorrect labels, and you
|
|
9347
|
-
* believe that they are having a negative effect on your transform quality.
|
|
9348
|
-
*
|
|
9349
|
-
* You can check on the status of your task run by calling the `GetMLTaskRun`
|
|
9350
|
-
* operation.
|
|
9351
|
-
*/
|
|
9352
|
-
export declare const startImportLabelsTaskRun: (input: StartImportLabelsTaskRunRequest) => effect.Effect<StartImportLabelsTaskRunResponse, EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9353
|
-
/**
|
|
9354
|
-
* Puts the specified workflow run properties for the given workflow run. If a property already exists for the specified run, then it overrides the value otherwise adds the property to existing properties.
|
|
9355
|
-
*/
|
|
9356
|
-
export declare const putWorkflowRunProperties: (input: PutWorkflowRunPropertiesRequest) => effect.Effect<PutWorkflowRunPropertiesResponse, AlreadyExistsException | ConcurrentModificationException | EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9357
|
-
/**
|
|
9358
|
-
* Creates a new registry which may be used to hold a collection of schemas.
|
|
9359
|
-
*/
|
|
9360
|
-
export declare const createRegistry: (input: CreateRegistryInput) => effect.Effect<CreateRegistryResponse, AccessDeniedException | AlreadyExistsException | ConcurrentModificationException | InternalServiceException | InvalidInputException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9361
|
-
/**
|
|
9362
|
-
* Registers a blueprint with Glue.
|
|
9363
|
-
*/
|
|
9364
|
-
export declare const createBlueprint: (input: CreateBlueprintRequest) => effect.Effect<CreateBlueprintResponse, AlreadyExistsException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9365
|
-
/**
|
|
9366
|
-
* Creates a new crawler with specified targets, role, configuration, and optional schedule.
|
|
9367
|
-
* At least one crawl target must be specified, in the `s3Targets` field, the
|
|
9368
|
-
* `jdbcTargets` field, or the `DynamoDBTargets` field.
|
|
9369
|
-
*/
|
|
9370
|
-
export declare const createCrawler: (input: CreateCrawlerRequest) => effect.Effect<CreateCrawlerResponse, AlreadyExistsException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9371
|
-
/**
|
|
9372
|
-
* Creates a data quality ruleset with DQDL rules applied to a specified Glue table.
|
|
9373
|
-
*
|
|
9374
|
-
* You create the ruleset using the Data Quality Definition Language (DQDL). For more information, see the Glue developer guide.
|
|
9375
|
-
*/
|
|
9376
|
-
export declare const createDataQualityRuleset: (input: CreateDataQualityRulesetRequest) => effect.Effect<CreateDataQualityRulesetResponse, AlreadyExistsException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9377
|
-
/**
|
|
9378
|
-
* Creates a new partition.
|
|
9379
|
-
*/
|
|
9380
|
-
export declare const createPartition: (input: CreatePartitionRequest) => effect.Effect<CreatePartitionResponse, AlreadyExistsException | EntityNotFoundException | GlueEncryptionException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9381
|
-
/**
|
|
9382
|
-
* Creates a new schema set and registers the schema definition. Returns an error if the schema set already exists without actually registering the version.
|
|
9383
|
-
*
|
|
9384
|
-
* When the schema set is created, a version checkpoint will be set to the first version. Compatibility mode "DISABLED" restricts any additional schema versions from being added after the first schema version. For all other compatibility modes, validation of compatibility settings will be applied only from the second version onwards when the `RegisterSchemaVersion` API is used.
|
|
9385
|
-
*
|
|
9386
|
-
* When this API is called without a `RegistryId`, this will create an entry for a "default-registry" in the registry database tables, if it is not already present.
|
|
9387
|
-
*/
|
|
9388
|
-
export declare const createSchema: (input: CreateSchemaInput) => effect.Effect<CreateSchemaResponse, AccessDeniedException | AlreadyExistsException | ConcurrentModificationException | EntityNotFoundException | InternalServiceException | InvalidInputException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9389
|
-
/**
|
|
9390
|
-
* Creates a new function definition in the Data Catalog.
|
|
9391
|
-
*/
|
|
9392
|
-
export declare const createUserDefinedFunction: (input: CreateUserDefinedFunctionRequest) => effect.Effect<CreateUserDefinedFunctionResponse, AlreadyExistsException | EntityNotFoundException | GlueEncryptionException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9393
|
-
/**
|
|
9394
|
-
* Creates a new workflow.
|
|
9395
|
-
*/
|
|
9396
|
-
export declare const createWorkflow: (input: CreateWorkflowRequest) => effect.Effect<CreateWorkflowResponse, AlreadyExistsException | ConcurrentModificationException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9397
|
-
/**
|
|
9398
|
-
* Executes the statement.
|
|
9399
|
-
*/
|
|
9400
|
-
export declare const runStatement: (input: RunStatementRequest) => effect.Effect<RunStatementResponse, AccessDeniedException | EntityNotFoundException | IllegalSessionStateException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | ValidationException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9401
|
-
/**
|
|
9402
|
-
* Starts a job run using a job definition.
|
|
9403
|
-
*/
|
|
9404
|
-
export declare const startJobRun: (input: StartJobRunRequest) => effect.Effect<StartJobRunResponse, ConcurrentRunsExceededException | EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9405
|
-
/**
|
|
9406
|
-
* Starts an existing trigger. See Triggering
|
|
9407
|
-
* Jobs for information about how different types of trigger are
|
|
9408
|
-
* started.
|
|
9409
|
-
*/
|
|
9410
|
-
export declare const startTrigger: (input: StartTriggerRequest) => effect.Effect<StartTriggerResponse, ConcurrentRunsExceededException | EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9411
|
-
/**
|
|
9412
|
-
* Starts a new run of the specified workflow.
|
|
9413
|
-
*/
|
|
9414
|
-
export declare const startWorkflowRun: (input: StartWorkflowRunRequest) => effect.Effect<StartWorkflowRunResponse, ConcurrentRunsExceededException | EntityNotFoundException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9415
|
-
/**
|
|
9416
|
-
* Creates settings for a column statistics task.
|
|
9417
|
-
*/
|
|
9418
|
-
export declare const createColumnStatisticsTaskSettings: (input: CreateColumnStatisticsTaskSettingsRequest) => effect.Effect<CreateColumnStatisticsTaskSettingsResponse, AccessDeniedException | AlreadyExistsException | ColumnStatisticsTaskRunningException | EntityNotFoundException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9419
|
-
/**
|
|
9420
|
-
* Creates a custom pattern that is used to detect sensitive data across the columns and rows of your structured data.
|
|
9421
|
-
*
|
|
9422
|
-
* Each custom pattern you create specifies a regular expression and an optional list of context words. If no context words are passed only a regular expression is checked.
|
|
9423
|
-
*/
|
|
9424
|
-
export declare const createCustomEntityType: (input: CreateCustomEntityTypeRequest) => effect.Effect<CreateCustomEntityTypeResponse, AccessDeniedException | AlreadyExistsException | IdempotentParameterMismatchException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9425
|
-
/**
|
|
9426
|
-
* Creates a new development endpoint.
|
|
9427
|
-
*/
|
|
9428
|
-
export declare const createDevEndpoint: (input: CreateDevEndpointRequest) => effect.Effect<CreateDevEndpointResponse, AccessDeniedException | AlreadyExistsException | IdempotentParameterMismatchException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | ValidationException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9429
|
-
/**
|
|
9430
|
-
* Creates a new session.
|
|
9431
|
-
*/
|
|
9432
|
-
export declare const createSession: (input: CreateSessionRequest) => effect.Effect<CreateSessionResponse, AccessDeniedException | AlreadyExistsException | IdempotentParameterMismatchException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | ValidationException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9433
|
-
/**
|
|
9434
|
-
* Annotate datapoints over time for a specific data quality statistic.
|
|
9435
|
-
* The API requires both profileID and statisticID as part of the InclusionAnnotation input.
|
|
9436
|
-
* The API only works for a single statisticId across multiple profiles.
|
|
9437
|
-
*/
|
|
9438
|
-
export declare const batchPutDataQualityStatisticAnnotation: (input: BatchPutDataQualityStatisticAnnotationRequest) => effect.Effect<BatchPutDataQualityStatisticAnnotationResponse, EntityNotFoundException | InternalServiceException | InvalidInputException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9439
|
-
/**
|
|
9440
|
-
* Creates an Glue machine learning transform. This operation creates the transform and
|
|
9441
|
-
* all the necessary parameters to train it.
|
|
9442
|
-
*
|
|
9443
|
-
* Call this operation as the first step in the process of using a machine learning transform
|
|
9444
|
-
* (such as the `FindMatches` transform) for deduplicating data. You can provide an
|
|
9445
|
-
* optional `Description`, in addition to the parameters that you want to use for your
|
|
9446
|
-
* algorithm.
|
|
9447
|
-
*
|
|
9448
|
-
* You must also specify certain parameters for the tasks that Glue runs on your
|
|
9449
|
-
* behalf as part of learning from your data and creating a high-quality machine learning
|
|
9450
|
-
* transform. These parameters include `Role`, and optionally,
|
|
9451
|
-
* `AllocatedCapacity`, `Timeout`, and `MaxRetries`. For more
|
|
9452
|
-
* information, see Jobs.
|
|
9453
|
-
*/
|
|
9454
|
-
export declare const createMLTransform: (input: CreateMLTransformRequest) => effect.Effect<CreateMLTransformResponse, AccessDeniedException | AlreadyExistsException | IdempotentParameterMismatchException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9455
|
-
/**
|
|
9456
|
-
* Creates a new security configuration. A security configuration is a set of security properties that can be used by Glue. You can use a security configuration to encrypt data at rest. For information about using security configurations in Glue, see Encrypting Data Written by Crawlers, Jobs, and Development Endpoints.
|
|
9457
|
-
*/
|
|
9458
|
-
export declare const createSecurityConfiguration: (input: CreateSecurityConfigurationRequest) => effect.Effect<CreateSecurityConfigurationResponse, AlreadyExistsException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9459
|
-
/**
|
|
9460
|
-
* Creates a new trigger.
|
|
9461
|
-
*
|
|
9462
|
-
* Job arguments may be logged. Do not pass plaintext secrets as arguments. Retrieve secrets from a Glue Connection, Amazon Web Services Secrets Manager or other secret management mechanism if you intend to keep them within the Job.
|
|
9463
|
-
*/
|
|
9464
|
-
export declare const createTrigger: (input: CreateTriggerRequest) => effect.Effect<CreateTriggerResponse, AlreadyExistsException | ConcurrentModificationException | EntityNotFoundException | IdempotentParameterMismatchException | InternalServiceException | InvalidInputException | OperationTimeoutException | ResourceNumberLimitExceededException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9465
9578
|
/**
|
|
9466
9579
|
* Starts a task to estimate the quality of the transform.
|
|
9467
9580
|
*
|
|
@@ -9483,10 +9596,6 @@ export declare const updateColumnStatisticsTaskSettings: (input: UpdateColumnSta
|
|
|
9483
9596
|
* it.
|
|
9484
9597
|
*/
|
|
9485
9598
|
export declare const updateCrawler: (input: UpdateCrawlerRequest) => effect.Effect<UpdateCrawlerResponse, CrawlerRunningException | EntityNotFoundException | InvalidInputException | OperationTimeoutException | VersionMismatchException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9486
|
-
/**
|
|
9487
|
-
* Updates the schedule of a crawler using a `cron` expression.
|
|
9488
|
-
*/
|
|
9489
|
-
export declare const updateCrawlerSchedule: (input: UpdateCrawlerScheduleRequest) => effect.Effect<UpdateCrawlerScheduleResponse, EntityNotFoundException | InvalidInputException | OperationTimeoutException | SchedulerTransitioningException | VersionMismatchException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9490
9599
|
/**
|
|
9491
9600
|
* Creates an Glue usage profile.
|
|
9492
9601
|
*/
|
|
@@ -9495,6 +9604,10 @@ export declare const createUsageProfile: (input: CreateUsageProfileRequest) => e
|
|
|
9495
9604
|
* The `DescribeConnectionType` API provides full details of the supported options for a given connection type in Glue.
|
|
9496
9605
|
*/
|
|
9497
9606
|
export declare const describeConnectionType: (input: DescribeConnectionTypeRequest) => effect.Effect<DescribeConnectionTypeResponse, AccessDeniedException | InternalServiceException | InvalidInputException | ValidationException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9607
|
+
/**
|
|
9608
|
+
* Returns a list of inbound integrations for the specified integration.
|
|
9609
|
+
*/
|
|
9610
|
+
export declare const describeInboundIntegrations: (input: DescribeInboundIntegrationsRequest) => effect.Effect<DescribeInboundIntegrationsResponse, AccessDeniedException | EntityNotFoundException | IntegrationNotFoundFault | InternalServerException | InternalServiceException | InvalidInputException | OperationNotSupportedException | TargetResourceNotFound | ValidationException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9498
9611
|
/**
|
|
9499
9612
|
* The name of the Catalog to retrieve. This should be all lowercase.
|
|
9500
9613
|
*/
|
|
@@ -9579,10 +9692,6 @@ export declare const getUnfilteredPartitionsMetadata: {
|
|
|
9579
9692
|
pages: (input: GetUnfilteredPartitionsMetadataRequest) => stream.Stream<GetUnfilteredPartitionsMetadataResponse, EntityNotFoundException | FederationSourceException | FederationSourceRetryableException | GlueEncryptionException | InternalServiceException | InvalidInputException | OperationTimeoutException | PermissionTypeMismatchException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9580
9693
|
items: (input: GetUnfilteredPartitionsMetadataRequest) => stream.Stream<unknown, EntityNotFoundException | FederationSourceException | FederationSourceRetryableException | GlueEncryptionException | InternalServiceException | InvalidInputException | OperationTimeoutException | PermissionTypeMismatchException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9581
9694
|
};
|
|
9582
|
-
/**
|
|
9583
|
-
* Returns a list of inbound integrations for the specified integration.
|
|
9584
|
-
*/
|
|
9585
|
-
export declare const describeInboundIntegrations: (input: DescribeInboundIntegrationsRequest) => effect.Effect<DescribeInboundIntegrationsResponse, AccessDeniedException | EntityNotFoundException | IntegrationNotFoundFault | InternalServerException | InternalServiceException | InvalidInputException | OperationNotSupportedException | TargetResourceNotFound | ValidationException | CommonErrors, Credentials | Region | HttpClient.HttpClient>;
|
|
9586
9695
|
/**
|
|
9587
9696
|
* Retrieves partitions in a batch request.
|
|
9588
9697
|
*/
|