aws-sdk 2.1634.0 → 2.1636.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/apis/account-2021-02-01.min.json +101 -19
- package/apis/firehose-2015-08-04.min.json +205 -159
- package/apis/fsx-2018-03-01.min.json +199 -163
- package/apis/globalaccelerator-2018-08-08.min.json +13 -1
- package/apis/glue-2017-03-31.min.json +324 -219
- package/apis/iotwireless-2020-11-22.min.json +3 -0
- package/apis/location-2020-11-19.min.json +1036 -754
- package/apis/location-2020-11-19.paginators.json +6 -0
- package/apis/s3-2006-03-01.examples.json +62 -62
- package/apis/s3-2006-03-01.min.json +6 -0
- package/apis/sns-2010-03-31.min.json +7 -1
- package/apis/sqs-2012-11-05.min.json +3 -0
- package/apis/storagegateway-2013-06-30.min.json +30 -14
- package/clients/account.d.ts +84 -9
- package/clients/firehose.d.ts +73 -10
- package/clients/fsx.d.ts +62 -18
- package/clients/globalaccelerator.d.ts +8 -0
- package/clients/glue.d.ts +202 -15
- package/clients/iotwireless.d.ts +1 -1
- package/clients/location.d.ts +981 -677
- package/clients/sns.d.ts +7 -7
- package/clients/sqs.d.ts +5 -5
- package/clients/storagegateway.d.ts +31 -16
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +13 -13
- package/dist/aws-sdk.js +1280 -915
- package/dist/aws-sdk.min.js +56 -56
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/glue.d.ts
CHANGED
@@ -1717,6 +1717,7 @@ declare class Glue extends Service {
|
|
1717
1717
|
updateWorkflow(callback?: (err: AWSError, data: Glue.Types.UpdateWorkflowResponse) => void): Request<Glue.Types.UpdateWorkflowResponse, AWSError>;
|
1718
1718
|
}
|
1719
1719
|
declare namespace Glue {
|
1720
|
+
export type AWSManagedClientApplicationReference = string;
|
1720
1721
|
export type AccountId = string;
|
1721
1722
|
export interface Action {
|
1722
1723
|
/**
|
@@ -1983,6 +1984,46 @@ declare namespace Glue {
|
|
1983
1984
|
}
|
1984
1985
|
export type AuditContextString = string;
|
1985
1986
|
export type AuthTokenString = string;
|
1987
|
+
export interface AuthenticationConfiguration {
|
1988
|
+
/**
|
1989
|
+
* A structure containing the authentication configuration.
|
1990
|
+
*/
|
1991
|
+
AuthenticationType?: AuthenticationType;
|
1992
|
+
/**
|
1993
|
+
* The secret manager ARN to store credentials.
|
1994
|
+
*/
|
1995
|
+
SecretArn?: SecretArn;
|
1996
|
+
/**
|
1997
|
+
* The properties for OAuth2 authentication.
|
1998
|
+
*/
|
1999
|
+
OAuth2Properties?: OAuth2Properties;
|
2000
|
+
}
|
2001
|
+
export interface AuthenticationConfigurationInput {
|
2002
|
+
/**
|
2003
|
+
* A structure containing the authentication configuration in the CreateConnection request.
|
2004
|
+
*/
|
2005
|
+
AuthenticationType?: AuthenticationType;
|
2006
|
+
/**
|
2007
|
+
* The secret manager ARN to store credentials in the CreateConnection request.
|
2008
|
+
*/
|
2009
|
+
SecretArn?: SecretArn;
|
2010
|
+
/**
|
2011
|
+
* The properties for OAuth2 authentication in the CreateConnection request.
|
2012
|
+
*/
|
2013
|
+
OAuth2Properties?: OAuth2PropertiesInput;
|
2014
|
+
}
|
2015
|
+
export type AuthenticationType = "BASIC"|"OAUTH2"|"CUSTOM"|string;
|
2016
|
+
export type AuthorizationCode = string;
|
2017
|
+
export interface AuthorizationCodeProperties {
|
2018
|
+
/**
|
2019
|
+
* An authorization code to be used in the third leg of the AUTHORIZATION_CODE grant workflow. This is a single-use code which becomes invalid once exchanged for an access token, thus it is acceptable to have this value as a request parameter.
|
2020
|
+
*/
|
2021
|
+
AuthorizationCode?: AuthorizationCode;
|
2022
|
+
/**
|
2023
|
+
* The redirect URI where the user gets redirected to by authorization server when issuing an authorization code. The URI is subsequently used when the authorization code is exchanged for an access token.
|
2024
|
+
*/
|
2025
|
+
RedirectUri?: RedirectUri;
|
2026
|
+
}
|
1986
2027
|
export interface BackfillError {
|
1987
2028
|
/**
|
1988
2029
|
* The error code for an error that occurred when registering partition indexes for an existing table.
|
@@ -3505,25 +3546,41 @@ declare namespace Glue {
|
|
3505
3546
|
*/
|
3506
3547
|
ConnectionProperties?: ConnectionProperties;
|
3507
3548
|
/**
|
3508
|
-
*
|
3549
|
+
* The physical connection requirements, such as virtual private cloud (VPC) and SecurityGroup, that are needed to make this connection successfully.
|
3509
3550
|
*/
|
3510
3551
|
PhysicalConnectionRequirements?: PhysicalConnectionRequirements;
|
3511
3552
|
/**
|
3512
|
-
* The time that this connection definition was created.
|
3553
|
+
* The timestamp of the time that this connection definition was created.
|
3513
3554
|
*/
|
3514
3555
|
CreationTime?: Timestamp;
|
3515
3556
|
/**
|
3516
|
-
* The last time
|
3557
|
+
* The timestamp of the last time the connection definition was updated.
|
3517
3558
|
*/
|
3518
3559
|
LastUpdatedTime?: Timestamp;
|
3519
3560
|
/**
|
3520
3561
|
* The user, group, or role that last updated this connection definition.
|
3521
3562
|
*/
|
3522
3563
|
LastUpdatedBy?: NameString;
|
3564
|
+
/**
|
3565
|
+
* The status of the connection. Can be one of: READY, IN_PROGRESS, or FAILED.
|
3566
|
+
*/
|
3567
|
+
Status?: ConnectionStatus;
|
3568
|
+
/**
|
3569
|
+
* The reason for the connection status.
|
3570
|
+
*/
|
3571
|
+
StatusReason?: LongValueString;
|
3572
|
+
/**
|
3573
|
+
* A timestamp of the time this connection was last validated.
|
3574
|
+
*/
|
3575
|
+
LastConnectionValidationTime?: Timestamp;
|
3576
|
+
/**
|
3577
|
+
* The authentication properties of the connection.
|
3578
|
+
*/
|
3579
|
+
AuthenticationConfiguration?: AuthenticationConfiguration;
|
3523
3580
|
}
|
3524
3581
|
export interface ConnectionInput {
|
3525
3582
|
/**
|
3526
|
-
* The name of the connection.
|
3583
|
+
* The name of the connection.
|
3527
3584
|
*/
|
3528
3585
|
Name: NameString;
|
3529
3586
|
/**
|
@@ -3531,7 +3588,7 @@ declare namespace Glue {
|
|
3531
3588
|
*/
|
3532
3589
|
Description?: DescriptionString;
|
3533
3590
|
/**
|
3534
|
-
* The type of the connection. Currently, these types are supported: JDBC - Designates a connection to a database through Java Database Connectivity (JDBC). JDBC Connections use the following ConnectionParameters. Required: All of (HOST, PORT, JDBC_ENGINE) or JDBC_CONNECTION_URL. Required: All of (USERNAME, PASSWORD) or SECRET_ID. Optional: JDBC_ENFORCE_SSL, CUSTOM_JDBC_CERT, CUSTOM_JDBC_CERT_STRING, SKIP_CUSTOM_JDBC_CERT_VALIDATION. These parameters are used to configure SSL with JDBC. KAFKA - Designates a connection to an Apache Kafka streaming platform. KAFKA Connections use the following ConnectionParameters. Required: KAFKA_BOOTSTRAP_SERVERS. Optional: KAFKA_SSL_ENABLED, KAFKA_CUSTOM_CERT, KAFKA_SKIP_CUSTOM_CERT_VALIDATION. These parameters are used to configure SSL with KAFKA. Optional: KAFKA_CLIENT_KEYSTORE, KAFKA_CLIENT_KEYSTORE_PASSWORD, KAFKA_CLIENT_KEY_PASSWORD, ENCRYPTED_KAFKA_CLIENT_KEYSTORE_PASSWORD, ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD. These parameters are used to configure TLS client configuration with SSL in KAFKA. Optional: KAFKA_SASL_MECHANISM. Can be specified as SCRAM-SHA-512, GSSAPI, or AWS_MSK_IAM. Optional: KAFKA_SASL_SCRAM_USERNAME, KAFKA_SASL_SCRAM_PASSWORD, ENCRYPTED_KAFKA_SASL_SCRAM_PASSWORD. These parameters are used to configure SASL/SCRAM-SHA-512 authentication with KAFKA. Optional: KAFKA_SASL_GSSAPI_KEYTAB, KAFKA_SASL_GSSAPI_KRB5_CONF, KAFKA_SASL_GSSAPI_SERVICE, KAFKA_SASL_GSSAPI_PRINCIPAL. These parameters are used to configure SASL/GSSAPI authentication with KAFKA. MONGODB - Designates a connection to a MongoDB document database. MONGODB Connections use the following ConnectionParameters. Required: CONNECTION_URL. Required: All of (USERNAME, PASSWORD) or SECRET_ID. NETWORK - Designates a network connection to a data source within an Amazon Virtual Private Cloud environment (Amazon VPC). NETWORK Connections do not require ConnectionParameters. Instead, provide a PhysicalConnectionRequirements. MARKETPLACE - Uses configuration settings contained in a connector purchased from Amazon Web Services Marketplace to read from and write to data stores that are not natively supported by Glue. MARKETPLACE Connections use the following ConnectionParameters. Required: CONNECTOR_TYPE, CONNECTOR_URL, CONNECTOR_CLASS_NAME, CONNECTION_URL. Required for JDBC CONNECTOR_TYPE connections: All of (USERNAME, PASSWORD) or SECRET_ID. CUSTOM - Uses configuration settings contained in a custom connector to read from and write to data stores that are not natively supported by Glue. SFTP is not supported. For more information about how optional ConnectionProperties are used to configure features in Glue, consult Glue connection properties. For more information about how optional ConnectionProperties are used to configure features in Glue Studio, consult Using connectors and connections.
|
3591
|
+
* The type of the connection. Currently, these types are supported: JDBC - Designates a connection to a database through Java Database Connectivity (JDBC). JDBC Connections use the following ConnectionParameters. Required: All of (HOST, PORT, JDBC_ENGINE) or JDBC_CONNECTION_URL. Required: All of (USERNAME, PASSWORD) or SECRET_ID. Optional: JDBC_ENFORCE_SSL, CUSTOM_JDBC_CERT, CUSTOM_JDBC_CERT_STRING, SKIP_CUSTOM_JDBC_CERT_VALIDATION. These parameters are used to configure SSL with JDBC. KAFKA - Designates a connection to an Apache Kafka streaming platform. KAFKA Connections use the following ConnectionParameters. Required: KAFKA_BOOTSTRAP_SERVERS. Optional: KAFKA_SSL_ENABLED, KAFKA_CUSTOM_CERT, KAFKA_SKIP_CUSTOM_CERT_VALIDATION. These parameters are used to configure SSL with KAFKA. Optional: KAFKA_CLIENT_KEYSTORE, KAFKA_CLIENT_KEYSTORE_PASSWORD, KAFKA_CLIENT_KEY_PASSWORD, ENCRYPTED_KAFKA_CLIENT_KEYSTORE_PASSWORD, ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD. These parameters are used to configure TLS client configuration with SSL in KAFKA. Optional: KAFKA_SASL_MECHANISM. Can be specified as SCRAM-SHA-512, GSSAPI, or AWS_MSK_IAM. Optional: KAFKA_SASL_SCRAM_USERNAME, KAFKA_SASL_SCRAM_PASSWORD, ENCRYPTED_KAFKA_SASL_SCRAM_PASSWORD. These parameters are used to configure SASL/SCRAM-SHA-512 authentication with KAFKA. Optional: KAFKA_SASL_GSSAPI_KEYTAB, KAFKA_SASL_GSSAPI_KRB5_CONF, KAFKA_SASL_GSSAPI_SERVICE, KAFKA_SASL_GSSAPI_PRINCIPAL. These parameters are used to configure SASL/GSSAPI authentication with KAFKA. MONGODB - Designates a connection to a MongoDB document database. MONGODB Connections use the following ConnectionParameters. Required: CONNECTION_URL. Required: All of (USERNAME, PASSWORD) or SECRET_ID. SALESFORCE - Designates a connection to Salesforce using OAuth authencation. Requires the AuthenticationConfiguration member to be configured. NETWORK - Designates a network connection to a data source within an Amazon Virtual Private Cloud environment (Amazon VPC). NETWORK Connections do not require ConnectionParameters. Instead, provide a PhysicalConnectionRequirements. MARKETPLACE - Uses configuration settings contained in a connector purchased from Amazon Web Services Marketplace to read from and write to data stores that are not natively supported by Glue. MARKETPLACE Connections use the following ConnectionParameters. Required: CONNECTOR_TYPE, CONNECTOR_URL, CONNECTOR_CLASS_NAME, CONNECTION_URL. Required for JDBC CONNECTOR_TYPE connections: All of (USERNAME, PASSWORD) or SECRET_ID. CUSTOM - Uses configuration settings contained in a custom connector to read from and write to data stores that are not natively supported by Glue. SFTP is not supported. For more information about how optional ConnectionProperties are used to configure features in Glue, consult Glue connection properties. For more information about how optional ConnectionProperties are used to configure features in Glue Studio, consult Using connectors and connections.
|
3535
3592
|
*/
|
3536
3593
|
ConnectionType: ConnectionType;
|
3537
3594
|
/**
|
@@ -3543,9 +3600,17 @@ declare namespace Glue {
|
|
3543
3600
|
*/
|
3544
3601
|
ConnectionProperties: ConnectionProperties;
|
3545
3602
|
/**
|
3546
|
-
*
|
3603
|
+
* The physical connection requirements, such as virtual private cloud (VPC) and SecurityGroup, that are needed to successfully make this connection.
|
3547
3604
|
*/
|
3548
3605
|
PhysicalConnectionRequirements?: PhysicalConnectionRequirements;
|
3606
|
+
/**
|
3607
|
+
* The authentication properties of the connection. Used for a Salesforce connection.
|
3608
|
+
*/
|
3609
|
+
AuthenticationConfiguration?: AuthenticationConfigurationInput;
|
3610
|
+
/**
|
3611
|
+
* A flag to validate the credentials during create connection. Used for a Salesforce connection. Default is true.
|
3612
|
+
*/
|
3613
|
+
ValidateCredentials?: Boolean;
|
3549
3614
|
}
|
3550
3615
|
export type ConnectionList = Connection[];
|
3551
3616
|
export type ConnectionName = string;
|
@@ -3560,8 +3625,9 @@ declare namespace Glue {
|
|
3560
3625
|
AwsKmsKeyId?: NameString;
|
3561
3626
|
}
|
3562
3627
|
export type ConnectionProperties = {[key: string]: ValueString};
|
3563
|
-
export type ConnectionPropertyKey = "HOST"|"PORT"|"USERNAME"|"PASSWORD"|"ENCRYPTED_PASSWORD"|"JDBC_DRIVER_JAR_URI"|"JDBC_DRIVER_CLASS_NAME"|"JDBC_ENGINE"|"JDBC_ENGINE_VERSION"|"CONFIG_FILES"|"INSTANCE_ID"|"JDBC_CONNECTION_URL"|"JDBC_ENFORCE_SSL"|"CUSTOM_JDBC_CERT"|"SKIP_CUSTOM_JDBC_CERT_VALIDATION"|"CUSTOM_JDBC_CERT_STRING"|"CONNECTION_URL"|"KAFKA_BOOTSTRAP_SERVERS"|"KAFKA_SSL_ENABLED"|"KAFKA_CUSTOM_CERT"|"KAFKA_SKIP_CUSTOM_CERT_VALIDATION"|"KAFKA_CLIENT_KEYSTORE"|"KAFKA_CLIENT_KEYSTORE_PASSWORD"|"KAFKA_CLIENT_KEY_PASSWORD"|"ENCRYPTED_KAFKA_CLIENT_KEYSTORE_PASSWORD"|"ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD"|"SECRET_ID"|"CONNECTOR_URL"|"CONNECTOR_TYPE"|"CONNECTOR_CLASS_NAME"|"KAFKA_SASL_MECHANISM"|"KAFKA_SASL_PLAIN_USERNAME"|"KAFKA_SASL_PLAIN_PASSWORD"|"ENCRYPTED_KAFKA_SASL_PLAIN_PASSWORD"|"KAFKA_SASL_SCRAM_USERNAME"|"KAFKA_SASL_SCRAM_PASSWORD"|"KAFKA_SASL_SCRAM_SECRETS_ARN"|"ENCRYPTED_KAFKA_SASL_SCRAM_PASSWORD"|"KAFKA_SASL_GSSAPI_KEYTAB"|"KAFKA_SASL_GSSAPI_KRB5_CONF"|"KAFKA_SASL_GSSAPI_SERVICE"|"KAFKA_SASL_GSSAPI_PRINCIPAL"|string;
|
3564
|
-
export type
|
3628
|
+
export type ConnectionPropertyKey = "HOST"|"PORT"|"USERNAME"|"PASSWORD"|"ENCRYPTED_PASSWORD"|"JDBC_DRIVER_JAR_URI"|"JDBC_DRIVER_CLASS_NAME"|"JDBC_ENGINE"|"JDBC_ENGINE_VERSION"|"CONFIG_FILES"|"INSTANCE_ID"|"JDBC_CONNECTION_URL"|"JDBC_ENFORCE_SSL"|"CUSTOM_JDBC_CERT"|"SKIP_CUSTOM_JDBC_CERT_VALIDATION"|"CUSTOM_JDBC_CERT_STRING"|"CONNECTION_URL"|"KAFKA_BOOTSTRAP_SERVERS"|"KAFKA_SSL_ENABLED"|"KAFKA_CUSTOM_CERT"|"KAFKA_SKIP_CUSTOM_CERT_VALIDATION"|"KAFKA_CLIENT_KEYSTORE"|"KAFKA_CLIENT_KEYSTORE_PASSWORD"|"KAFKA_CLIENT_KEY_PASSWORD"|"ENCRYPTED_KAFKA_CLIENT_KEYSTORE_PASSWORD"|"ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD"|"SECRET_ID"|"CONNECTOR_URL"|"CONNECTOR_TYPE"|"CONNECTOR_CLASS_NAME"|"KAFKA_SASL_MECHANISM"|"KAFKA_SASL_PLAIN_USERNAME"|"KAFKA_SASL_PLAIN_PASSWORD"|"ENCRYPTED_KAFKA_SASL_PLAIN_PASSWORD"|"KAFKA_SASL_SCRAM_USERNAME"|"KAFKA_SASL_SCRAM_PASSWORD"|"KAFKA_SASL_SCRAM_SECRETS_ARN"|"ENCRYPTED_KAFKA_SASL_SCRAM_PASSWORD"|"KAFKA_SASL_GSSAPI_KEYTAB"|"KAFKA_SASL_GSSAPI_KRB5_CONF"|"KAFKA_SASL_GSSAPI_SERVICE"|"KAFKA_SASL_GSSAPI_PRINCIPAL"|"ROLE_ARN"|string;
|
3629
|
+
export type ConnectionStatus = "READY"|"IN_PROGRESS"|"FAILED"|string;
|
3630
|
+
export type ConnectionType = "JDBC"|"SFTP"|"MONGODB"|"KAFKA"|"NETWORK"|"MARKETPLACE"|"CUSTOM"|"SALESFORCE"|string;
|
3565
3631
|
export interface ConnectionsList {
|
3566
3632
|
/**
|
3567
3633
|
* A list of connections used by the job.
|
@@ -3918,6 +3984,10 @@ declare namespace Glue {
|
|
3918
3984
|
Tags?: TagsMap;
|
3919
3985
|
}
|
3920
3986
|
export interface CreateConnectionResponse {
|
3987
|
+
/**
|
3988
|
+
* The status of the connection creation request. The request can take some time for certain authentication types, for example when creating an OAuth connection with token exchange over VPC.
|
3989
|
+
*/
|
3990
|
+
CreateConnectionStatus?: ConnectionStatus;
|
3921
3991
|
}
|
3922
3992
|
export interface CreateCrawlerRequest {
|
3923
3993
|
/**
|
@@ -4305,7 +4375,7 @@ declare namespace Glue {
|
|
4305
4375
|
*/
|
4306
4376
|
AllocatedCapacity?: IntegerValue;
|
4307
4377
|
/**
|
4308
|
-
* The job timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours).
|
4378
|
+
* The job timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours) for batch jobs. Streaming jobs must have timeout values less than 7 days or 10080 minutes. When the value is left blank, the job will be restarted after 7 days based if you have not setup a maintenance window. If you have setup maintenance window, it will be restarted during the maintenance window after 7 days.
|
4309
4379
|
*/
|
4310
4380
|
Timeout?: Timeout;
|
4311
4381
|
/**
|
@@ -8901,7 +8971,7 @@ declare namespace Glue {
|
|
8901
8971
|
*/
|
8902
8972
|
AllocatedCapacity?: IntegerValue;
|
8903
8973
|
/**
|
8904
|
-
* The job timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours).
|
8974
|
+
* The job timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours) for batch jobs. Streaming jobs must have timeout values less than 7 days or 10080 minutes. When the value is left blank, the job will be restarted after 7 days based if you have not setup a maintenance window. If you have setup maintenance window, it will be restarted during the maintenance window after 7 days.
|
8905
8975
|
*/
|
8906
8976
|
Timeout?: Timeout;
|
8907
8977
|
/**
|
@@ -9076,7 +9146,7 @@ declare namespace Glue {
|
|
9076
9146
|
*/
|
9077
9147
|
ExecutionTime?: ExecutionTime;
|
9078
9148
|
/**
|
9079
|
-
* The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. This value overrides the timeout value set in the parent job.
|
9149
|
+
* The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. This value overrides the timeout value set in the parent job. Streaming jobs must have timeout values less than 7 days or 10080 minutes. When the value is left blank, the job will be restarted after 7 days based if you have not setup a maintenance window. If you have setup maintenance window, it will be restarted during the maintenance window after 7 days.
|
9080
9150
|
*/
|
9081
9151
|
Timeout?: Timeout;
|
9082
9152
|
/**
|
@@ -9168,7 +9238,7 @@ declare namespace Glue {
|
|
9168
9238
|
*/
|
9169
9239
|
AllocatedCapacity?: IntegerValue;
|
9170
9240
|
/**
|
9171
|
-
* The job timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours).
|
9241
|
+
* The job timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours) for batch jobs. Streaming jobs must have timeout values less than 7 days or 10080 minutes. When the value is left blank, the job will be restarted after 7 days based if you have not setup a maintenance window. If you have setup maintenance window, it will be restarted during the maintenance window after 7 days.
|
9172
9242
|
*/
|
9173
9243
|
Timeout?: Timeout;
|
9174
9244
|
/**
|
@@ -10082,6 +10152,7 @@ declare namespace Glue {
|
|
10082
10152
|
NumberOfDistinctValues: NonNegativeLong;
|
10083
10153
|
}
|
10084
10154
|
export type LongValue = number;
|
10155
|
+
export type LongValueString = string;
|
10085
10156
|
export interface MLTransform {
|
10086
10157
|
/**
|
10087
10158
|
* The unique transform ID that is generated for the machine learning transform. The ID is guaranteed to be unique and does not change.
|
@@ -10451,6 +10522,57 @@ declare namespace Glue {
|
|
10451
10522
|
export type NullableDouble = number;
|
10452
10523
|
export type NullableInteger = number;
|
10453
10524
|
export type NullableString = string;
|
10525
|
+
export interface OAuth2ClientApplication {
|
10526
|
+
/**
|
10527
|
+
* The client application clientID if the ClientAppType is USER_MANAGED.
|
10528
|
+
*/
|
10529
|
+
UserManagedClientApplicationClientId?: UserManagedClientApplicationClientId;
|
10530
|
+
/**
|
10531
|
+
* The reference to the SaaS-side client app that is Amazon Web Services managed.
|
10532
|
+
*/
|
10533
|
+
AWSManagedClientApplicationReference?: AWSManagedClientApplicationReference;
|
10534
|
+
}
|
10535
|
+
export type OAuth2GrantType = "AUTHORIZATION_CODE"|"CLIENT_CREDENTIALS"|"JWT_BEARER"|string;
|
10536
|
+
export interface OAuth2Properties {
|
10537
|
+
/**
|
10538
|
+
* The OAuth2 grant type. For example, AUTHORIZATION_CODE, JWT_BEARER, or CLIENT_CREDENTIALS.
|
10539
|
+
*/
|
10540
|
+
OAuth2GrantType?: OAuth2GrantType;
|
10541
|
+
/**
|
10542
|
+
* The client application type. For example, AWS_MANAGED or USER_MANAGED.
|
10543
|
+
*/
|
10544
|
+
OAuth2ClientApplication?: OAuth2ClientApplication;
|
10545
|
+
/**
|
10546
|
+
* The URL of the provider's authentication server, to exchange an authorization code for an access token.
|
10547
|
+
*/
|
10548
|
+
TokenUrl?: TokenUrl;
|
10549
|
+
/**
|
10550
|
+
* A map of parameters that are added to the token GET request.
|
10551
|
+
*/
|
10552
|
+
TokenUrlParametersMap?: TokenUrlParametersMap;
|
10553
|
+
}
|
10554
|
+
export interface OAuth2PropertiesInput {
|
10555
|
+
/**
|
10556
|
+
* The OAuth2 grant type in the CreateConnection request. For example, AUTHORIZATION_CODE, JWT_BEARER, or CLIENT_CREDENTIALS.
|
10557
|
+
*/
|
10558
|
+
OAuth2GrantType?: OAuth2GrantType;
|
10559
|
+
/**
|
10560
|
+
* The client application type in the CreateConnection request. For example, AWS_MANAGED or USER_MANAGED.
|
10561
|
+
*/
|
10562
|
+
OAuth2ClientApplication?: OAuth2ClientApplication;
|
10563
|
+
/**
|
10564
|
+
* The URL of the provider's authentication server, to exchange an authorization code for an access token.
|
10565
|
+
*/
|
10566
|
+
TokenUrl?: TokenUrl;
|
10567
|
+
/**
|
10568
|
+
* A map of parameters that are added to the token GET request.
|
10569
|
+
*/
|
10570
|
+
TokenUrlParametersMap?: TokenUrlParametersMap;
|
10571
|
+
/**
|
10572
|
+
* The set of properties required for the the OAuth2 AUTHORIZATION_CODE grant type.
|
10573
|
+
*/
|
10574
|
+
AuthorizationCodeProperties?: AuthorizationCodeProperties;
|
10575
|
+
}
|
10454
10576
|
export type OneInput = NodeId[];
|
10455
10577
|
export interface OpenTableFormatInput {
|
10456
10578
|
/**
|
@@ -10704,7 +10826,7 @@ declare namespace Glue {
|
|
10704
10826
|
*/
|
10705
10827
|
SecurityGroupIdList?: SecurityGroupIdList;
|
10706
10828
|
/**
|
10707
|
-
* The connection's Availability Zone.
|
10829
|
+
* The connection's Availability Zone.
|
10708
10830
|
*/
|
10709
10831
|
AvailabilityZone?: NameString;
|
10710
10832
|
}
|
@@ -11002,6 +11124,7 @@ declare namespace Glue {
|
|
11002
11124
|
*/
|
11003
11125
|
RecrawlBehavior?: RecrawlBehavior;
|
11004
11126
|
}
|
11127
|
+
export type RedirectUri = string;
|
11005
11128
|
export interface RedshiftSource {
|
11006
11129
|
/**
|
11007
11130
|
* The name of the Amazon Redshift data store.
|
@@ -12053,6 +12176,7 @@ declare namespace Glue {
|
|
12053
12176
|
*/
|
12054
12177
|
TableList?: TableList;
|
12055
12178
|
}
|
12179
|
+
export type SecretArn = string;
|
12056
12180
|
export interface SecurityConfiguration {
|
12057
12181
|
/**
|
12058
12182
|
* The name of the security configuration.
|
@@ -12714,7 +12838,7 @@ declare namespace Glue {
|
|
12714
12838
|
*/
|
12715
12839
|
AllocatedCapacity?: IntegerValue;
|
12716
12840
|
/**
|
12717
|
-
* The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. This value overrides the timeout value set in the parent job.
|
12841
|
+
* The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. This value overrides the timeout value set in the parent job. Streaming jobs must have timeout values less than 7 days or 10080 minutes. When the value is left blank, the job will be restarted after 7 days based if you have not setup a maintenance window. If you have setup maintenance window, it will be restarted during the maintenance window after 7 days.
|
12718
12842
|
*/
|
12719
12843
|
Timeout?: Timeout;
|
12720
12844
|
/**
|
@@ -13220,6 +13344,10 @@ declare namespace Glue {
|
|
13220
13344
|
* A TableIdentifier structure that describes a target table for resource linking.
|
13221
13345
|
*/
|
13222
13346
|
TargetTable?: TableIdentifier;
|
13347
|
+
/**
|
13348
|
+
* A structure that contains all the information that defines the view, including the dialect or dialects for the view, and the query.
|
13349
|
+
*/
|
13350
|
+
ViewDefinition?: ViewDefinitionInput;
|
13223
13351
|
}
|
13224
13352
|
export type TableList = Table[];
|
13225
13353
|
export type TableName = string;
|
@@ -13417,6 +13545,10 @@ declare namespace Glue {
|
|
13417
13545
|
export type Timestamp = Date;
|
13418
13546
|
export type TimestampValue = Date;
|
13419
13547
|
export type Token = string;
|
13548
|
+
export type TokenUrl = string;
|
13549
|
+
export type TokenUrlParameterKey = string;
|
13550
|
+
export type TokenUrlParameterValue = string;
|
13551
|
+
export type TokenUrlParametersMap = {[key: string]: TokenUrlParameterValue};
|
13420
13552
|
export type Topk = number;
|
13421
13553
|
export type TotalSegmentsInteger = number;
|
13422
13554
|
export type TransactionIdString = string;
|
@@ -14262,6 +14394,14 @@ declare namespace Glue {
|
|
14262
14394
|
* The version ID at which to update the table contents.
|
14263
14395
|
*/
|
14264
14396
|
VersionId?: VersionString;
|
14397
|
+
/**
|
14398
|
+
* The operation to be performed when updating the view.
|
14399
|
+
*/
|
14400
|
+
ViewUpdateAction?: ViewUpdateAction;
|
14401
|
+
/**
|
14402
|
+
* A flag that can be set to true to ignore matching storage descriptor and subobject matching requirements.
|
14403
|
+
*/
|
14404
|
+
Force?: Boolean;
|
14265
14405
|
}
|
14266
14406
|
export interface UpdateTableResponse {
|
14267
14407
|
}
|
@@ -14412,6 +14552,7 @@ declare namespace Glue {
|
|
14412
14552
|
ResourceUris?: ResourceUriList;
|
14413
14553
|
}
|
14414
14554
|
export type UserDefinedFunctionList = UserDefinedFunction[];
|
14555
|
+
export type UserManagedClientApplicationClientId = string;
|
14415
14556
|
export type ValueString = string;
|
14416
14557
|
export type ValueStringList = ValueString[];
|
14417
14558
|
export type VersionId = number;
|
@@ -14436,6 +14577,24 @@ declare namespace Glue {
|
|
14436
14577
|
*/
|
14437
14578
|
Representations?: ViewRepresentationList;
|
14438
14579
|
}
|
14580
|
+
export interface ViewDefinitionInput {
|
14581
|
+
/**
|
14582
|
+
* You can set this flag as true to instruct the engine not to push user-provided operations into the logical plan of the view during query planning. However, setting this flag does not guarantee that the engine will comply. Refer to the engine's documentation to understand the guarantees provided, if any.
|
14583
|
+
*/
|
14584
|
+
IsProtected?: NullableBoolean;
|
14585
|
+
/**
|
14586
|
+
* The definer of a view in SQL.
|
14587
|
+
*/
|
14588
|
+
Definer?: ArnString;
|
14589
|
+
/**
|
14590
|
+
* A list of structures that contains the dialect of the view, and the query that defines the view.
|
14591
|
+
*/
|
14592
|
+
Representations?: ViewRepresentationInputList;
|
14593
|
+
/**
|
14594
|
+
* A list of base table ARNs that make up the view.
|
14595
|
+
*/
|
14596
|
+
SubObjects?: ViewSubObjectsList;
|
14597
|
+
}
|
14439
14598
|
export type ViewDialect = "REDSHIFT"|"ATHENA"|"SPARK"|string;
|
14440
14599
|
export type ViewDialectVersionString = string;
|
14441
14600
|
export interface ViewRepresentation {
|
@@ -14452,17 +14611,45 @@ declare namespace Glue {
|
|
14452
14611
|
*/
|
14453
14612
|
ViewOriginalText?: ViewTextString;
|
14454
14613
|
/**
|
14455
|
-
* The expanded SQL for the view. This SQL is used by engines while processing a query on a view. Engines may perform operations during view creation to transform ViewOriginalText to ViewExpandedText. For example: Fully
|
14614
|
+
* The expanded SQL for the view. This SQL is used by engines while processing a query on a view. Engines may perform operations during view creation to transform ViewOriginalText to ViewExpandedText. For example: Fully qualified identifiers: SELECT * from table1 -> SELECT * from db1.table1
|
14456
14615
|
*/
|
14457
14616
|
ViewExpandedText?: ViewTextString;
|
14617
|
+
/**
|
14618
|
+
* The name of the connection to be used to validate the specific representation of the view.
|
14619
|
+
*/
|
14620
|
+
ValidationConnection?: NameString;
|
14458
14621
|
/**
|
14459
14622
|
* Dialects marked as stale are no longer valid and must be updated before they can be queried in their respective query engines.
|
14460
14623
|
*/
|
14461
14624
|
IsStale?: NullableBoolean;
|
14462
14625
|
}
|
14626
|
+
export interface ViewRepresentationInput {
|
14627
|
+
/**
|
14628
|
+
* A parameter that specifies the engine type of a specific representation.
|
14629
|
+
*/
|
14630
|
+
Dialect?: ViewDialect;
|
14631
|
+
/**
|
14632
|
+
* A parameter that specifies the version of the engine of a specific representation.
|
14633
|
+
*/
|
14634
|
+
DialectVersion?: ViewDialectVersionString;
|
14635
|
+
/**
|
14636
|
+
* A string that represents the original SQL query that describes the view.
|
14637
|
+
*/
|
14638
|
+
ViewOriginalText?: ViewTextString;
|
14639
|
+
/**
|
14640
|
+
* The name of the connection to be used to validate the specific representation of the view.
|
14641
|
+
*/
|
14642
|
+
ValidationConnection?: NameString;
|
14643
|
+
/**
|
14644
|
+
* A string that represents the SQL query that describes the view with expanded resource ARNs
|
14645
|
+
*/
|
14646
|
+
ViewExpandedText?: ViewTextString;
|
14647
|
+
}
|
14648
|
+
export type ViewRepresentationInputList = ViewRepresentationInput[];
|
14463
14649
|
export type ViewRepresentationList = ViewRepresentation[];
|
14464
14650
|
export type ViewSubObjectsList = ArnString[];
|
14465
14651
|
export type ViewTextString = string;
|
14652
|
+
export type ViewUpdateAction = "ADD"|"REPLACE"|"ADD_OR_REPLACE"|"DROP"|string;
|
14466
14653
|
export type WorkerType = "Standard"|"G.1X"|"G.2X"|"G.025X"|"G.4X"|"G.8X"|"Z.2X"|string;
|
14467
14654
|
export interface Workflow {
|
14468
14655
|
/**
|
package/clients/iotwireless.d.ts
CHANGED
@@ -1875,7 +1875,7 @@ declare namespace IoTWireless {
|
|
1875
1875
|
export type FirmwareUpdateRole = string;
|
1876
1876
|
export type FragmentIntervalMS = number;
|
1877
1877
|
export type FragmentSizeBytes = number;
|
1878
|
-
export type FuotaDeviceStatus = "Initial"|"Package_Not_Supported"|"FragAlgo_unsupported"|"Not_enough_memory"|"FragIndex_unsupported"|"Wrong_descriptor"|"SessionCnt_replay"|"MissingFrag"|"MemoryError"|"MICError"|"Successful"|string;
|
1878
|
+
export type FuotaDeviceStatus = "Initial"|"Package_Not_Supported"|"FragAlgo_unsupported"|"Not_enough_memory"|"FragIndex_unsupported"|"Wrong_descriptor"|"SessionCnt_replay"|"MissingFrag"|"MemoryError"|"MICError"|"Successful"|"Device_exist_in_conflict_fuota_task"|string;
|
1879
1879
|
export interface FuotaTask {
|
1880
1880
|
Id?: FuotaTaskId;
|
1881
1881
|
Arn?: FuotaTaskArn;
|