aws-sdk 2.1389.0 → 2.1391.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +17 -1
- package/README.md +1 -1
- package/apis/athena-2017-05-18.min.json +55 -39
- package/apis/cloudformation-2010-05-15.min.json +164 -127
- package/apis/cloudtrail-2013-11-01.min.json +34 -1
- package/apis/ec2-2016-11-15.min.json +6 -0
- package/apis/finspace-2021-03-12.min.json +1401 -17
- package/apis/finspace-2021-03-12.paginators.json +21 -0
- package/apis/keyspaces-2022-02-10.min.json +60 -34
- package/apis/kms-2014-11-01.examples.json +117 -9
- package/apis/sagemaker-2017-07-24.min.json +118 -81
- package/apis/wafv2-2019-07-29.min.json +86 -25
- package/clients/athena.d.ts +19 -3
- package/clients/cloudformation.d.ts +124 -61
- package/clients/cloudtrail.d.ts +90 -54
- package/clients/ec2.d.ts +2 -2
- package/clients/finspace.d.ts +1904 -127
- package/clients/frauddetector.d.ts +5 -5
- package/clients/keyspaces.d.ts +34 -1
- package/clients/kms.d.ts +20 -20
- package/clients/lambda.d.ts +10 -10
- package/clients/mwaa.d.ts +5 -5
- package/clients/sagemaker.d.ts +40 -1
- package/clients/wafv2.d.ts +95 -8
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +10 -10
- package/dist/aws-sdk.js +262 -170
- package/dist/aws-sdk.min.js +99 -99
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/sagemaker.d.ts
CHANGED
@@ -3211,7 +3211,7 @@ declare namespace SageMaker {
|
|
3211
3211
|
*/
|
3212
3212
|
ChannelType?: AutoMLChannelType;
|
3213
3213
|
/**
|
3214
|
-
* The content type of the data from the input source. The following are the allowed content types for different problems: ImageClassification: image/png, image/jpeg,
|
3214
|
+
* The content type of the data from the input source. The following are the allowed content types for different problems: ImageClassification: image/png, image/jpeg, image/* TextClassification: text/csv;header=present
|
3215
3215
|
*/
|
3216
3216
|
ContentType?: ContentType;
|
3217
3217
|
/**
|
@@ -9383,6 +9383,10 @@ declare namespace SageMaker {
|
|
9383
9383
|
* The parallelism configuration applied to the pipeline.
|
9384
9384
|
*/
|
9385
9385
|
ParallelismConfiguration?: ParallelismConfiguration;
|
9386
|
+
/**
|
9387
|
+
* The selective execution configuration applied to the pipeline run.
|
9388
|
+
*/
|
9389
|
+
SelectiveExecutionConfig?: SelectiveExecutionConfig;
|
9386
9390
|
}
|
9387
9391
|
export interface DescribePipelineRequest {
|
9388
9392
|
/**
|
@@ -18102,6 +18106,10 @@ declare namespace SageMaker {
|
|
18102
18106
|
* Contains a list of pipeline parameters. This list can be empty.
|
18103
18107
|
*/
|
18104
18108
|
PipelineParameters?: ParameterList;
|
18109
|
+
/**
|
18110
|
+
* The selective execution configuration applied to the pipeline run.
|
18111
|
+
*/
|
18112
|
+
SelectiveExecutionConfig?: SelectiveExecutionConfig;
|
18105
18113
|
}
|
18106
18114
|
export type PipelineExecutionArn = string;
|
18107
18115
|
export type PipelineExecutionDescription = string;
|
@@ -18149,6 +18157,10 @@ declare namespace SageMaker {
|
|
18149
18157
|
* Metadata to run the pipeline step.
|
18150
18158
|
*/
|
18151
18159
|
Metadata?: PipelineExecutionStepMetadata;
|
18160
|
+
/**
|
18161
|
+
* The ARN from an execution of the current pipeline from which results are reused for this step.
|
18162
|
+
*/
|
18163
|
+
SelectiveExecutionResult?: SelectiveExecutionResult;
|
18152
18164
|
}
|
18153
18165
|
export type PipelineExecutionStepList = PipelineExecutionStep[];
|
18154
18166
|
export interface PipelineExecutionStepMetadata {
|
@@ -19694,6 +19706,29 @@ declare namespace SageMaker {
|
|
19694
19706
|
export type SecurityGroupId = string;
|
19695
19707
|
export type SecurityGroupIds = SecurityGroupId[];
|
19696
19708
|
export type Seed = number;
|
19709
|
+
export interface SelectedStep {
|
19710
|
+
/**
|
19711
|
+
* The name of the pipeline step.
|
19712
|
+
*/
|
19713
|
+
StepName: String256;
|
19714
|
+
}
|
19715
|
+
export type SelectedStepList = SelectedStep[];
|
19716
|
+
export interface SelectiveExecutionConfig {
|
19717
|
+
/**
|
19718
|
+
* The ARN from a reference execution of the current pipeline. Used to copy input collaterals needed for the selected steps to run. The execution status of the pipeline can be either Failed or Success.
|
19719
|
+
*/
|
19720
|
+
SourcePipelineExecutionArn: PipelineExecutionArn;
|
19721
|
+
/**
|
19722
|
+
* A list of pipeline steps to run. All step(s) in all path(s) between two selected steps should be included.
|
19723
|
+
*/
|
19724
|
+
SelectedSteps: SelectedStepList;
|
19725
|
+
}
|
19726
|
+
export interface SelectiveExecutionResult {
|
19727
|
+
/**
|
19728
|
+
* The ARN from an execution of the current pipeline.
|
19729
|
+
*/
|
19730
|
+
SourcePipelineExecutionArn?: PipelineExecutionArn;
|
19731
|
+
}
|
19697
19732
|
export interface SendPipelineExecutionStepFailureRequest {
|
19698
19733
|
/**
|
19699
19734
|
* The pipeline generated token from the Amazon SQS queue.
|
@@ -19951,6 +19986,10 @@ declare namespace SageMaker {
|
|
19951
19986
|
* This configuration, if specified, overrides the parallelism configuration of the parent pipeline for this specific run.
|
19952
19987
|
*/
|
19953
19988
|
ParallelismConfiguration?: ParallelismConfiguration;
|
19989
|
+
/**
|
19990
|
+
* The selective execution configuration applied to the pipeline run.
|
19991
|
+
*/
|
19992
|
+
SelectiveExecutionConfig?: SelectiveExecutionConfig;
|
19954
19993
|
}
|
19955
19994
|
export interface StartPipelineExecutionResponse {
|
19956
19995
|
/**
|
package/clients/wafv2.d.ts
CHANGED
@@ -123,6 +123,22 @@ declare class WAFV2 extends Service {
|
|
123
123
|
* Deletes the specified WebACL. You can only use this if ManagedByFirewallManager is false in the specified WebACL. Before deleting any web ACL, first disassociate it from all resources. To retrieve a list of the resources that are associated with a web ACL, use the following calls: For regional resources, call ListResourcesForWebACL. For Amazon CloudFront distributions, use the CloudFront call ListDistributionsByWebACLId. For information, see ListDistributionsByWebACLId in the Amazon CloudFront API Reference. To disassociate a resource from a web ACL, use the following calls: For regional resources, call DisassociateWebACL. For Amazon CloudFront distributions, provide an empty web ACL ID in the CloudFront call UpdateDistribution. For information, see UpdateDistribution in the Amazon CloudFront API Reference.
|
124
124
|
*/
|
125
125
|
deleteWebACL(callback?: (err: AWSError, data: WAFV2.Types.DeleteWebACLResponse) => void): Request<WAFV2.Types.DeleteWebACLResponse, AWSError>;
|
126
|
+
/**
|
127
|
+
* Provides high-level information for the Amazon Web Services Managed Rules rule groups and Amazon Web Services Marketplace managed rule groups.
|
128
|
+
*/
|
129
|
+
describeAllManagedProducts(params: WAFV2.Types.DescribeAllManagedProductsRequest, callback?: (err: AWSError, data: WAFV2.Types.DescribeAllManagedProductsResponse) => void): Request<WAFV2.Types.DescribeAllManagedProductsResponse, AWSError>;
|
130
|
+
/**
|
131
|
+
* Provides high-level information for the Amazon Web Services Managed Rules rule groups and Amazon Web Services Marketplace managed rule groups.
|
132
|
+
*/
|
133
|
+
describeAllManagedProducts(callback?: (err: AWSError, data: WAFV2.Types.DescribeAllManagedProductsResponse) => void): Request<WAFV2.Types.DescribeAllManagedProductsResponse, AWSError>;
|
134
|
+
/**
|
135
|
+
* Provides high-level information for the managed rule groups owned by a specific vendor.
|
136
|
+
*/
|
137
|
+
describeManagedProductsByVendor(params: WAFV2.Types.DescribeManagedProductsByVendorRequest, callback?: (err: AWSError, data: WAFV2.Types.DescribeManagedProductsByVendorResponse) => void): Request<WAFV2.Types.DescribeManagedProductsByVendorResponse, AWSError>;
|
138
|
+
/**
|
139
|
+
* Provides high-level information for the managed rule groups owned by a specific vendor.
|
140
|
+
*/
|
141
|
+
describeManagedProductsByVendor(callback?: (err: AWSError, data: WAFV2.Types.DescribeManagedProductsByVendorResponse) => void): Request<WAFV2.Types.DescribeManagedProductsByVendorResponse, AWSError>;
|
126
142
|
/**
|
127
143
|
* Provides high-level information for a managed rule group, including descriptions of the rules.
|
128
144
|
*/
|
@@ -996,9 +1012,37 @@ declare namespace WAFV2 {
|
|
996
1012
|
}
|
997
1013
|
export interface DeleteWebACLResponse {
|
998
1014
|
}
|
1015
|
+
export interface DescribeAllManagedProductsRequest {
|
1016
|
+
/**
|
1017
|
+
* Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance. To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows: CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1. API and SDKs - For all calls, use the Region endpoint us-east-1.
|
1018
|
+
*/
|
1019
|
+
Scope: Scope;
|
1020
|
+
}
|
1021
|
+
export interface DescribeAllManagedProductsResponse {
|
1022
|
+
/**
|
1023
|
+
* High-level information for the Amazon Web Services Managed Rules rule groups and Amazon Web Services Marketplace managed rule groups.
|
1024
|
+
*/
|
1025
|
+
ManagedProducts?: ManagedProductDescriptors;
|
1026
|
+
}
|
1027
|
+
export interface DescribeManagedProductsByVendorRequest {
|
1028
|
+
/**
|
1029
|
+
* The name of the managed rule group vendor. You use this, along with the rule group name, to identify a rule group.
|
1030
|
+
*/
|
1031
|
+
VendorName: VendorName;
|
1032
|
+
/**
|
1033
|
+
* Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance. To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows: CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1. API and SDKs - For all calls, use the Region endpoint us-east-1.
|
1034
|
+
*/
|
1035
|
+
Scope: Scope;
|
1036
|
+
}
|
1037
|
+
export interface DescribeManagedProductsByVendorResponse {
|
1038
|
+
/**
|
1039
|
+
* High-level information for the managed rule groups owned by the specified vendor.
|
1040
|
+
*/
|
1041
|
+
ManagedProducts?: ManagedProductDescriptors;
|
1042
|
+
}
|
999
1043
|
export interface DescribeManagedRuleGroupRequest {
|
1000
1044
|
/**
|
1001
|
-
* The name of the managed rule group vendor. You use this, along with the rule group name, to identify
|
1045
|
+
* The name of the managed rule group vendor. You use this, along with the rule group name, to identify a rule group.
|
1002
1046
|
*/
|
1003
1047
|
VendorName: VendorName;
|
1004
1048
|
/**
|
@@ -1020,7 +1064,7 @@ declare namespace WAFV2 {
|
|
1020
1064
|
*/
|
1021
1065
|
VersionName?: VersionKeyString;
|
1022
1066
|
/**
|
1023
|
-
* The Amazon resource name (ARN) of the Amazon Simple Notification Service SNS topic that's used to
|
1067
|
+
* The Amazon resource name (ARN) of the Amazon Simple Notification Service SNS topic that's used to provide notification of changes to the managed rule group. You can subscribe to the SNS topic to receive notifications when the managed rule group is modified, such as for new versions and for version expiration. For more information, see the Amazon Simple Notification Service Developer Guide.
|
1024
1068
|
*/
|
1025
1069
|
SnsTopicArn?: ResourceArn;
|
1026
1070
|
/**
|
@@ -1110,7 +1154,7 @@ declare namespace WAFV2 {
|
|
1110
1154
|
*/
|
1111
1155
|
Cookies?: Cookies;
|
1112
1156
|
/**
|
1113
|
-
* Inspect a string containing the list of the request's header names, ordered as they appear in the web request that WAF receives for inspection. WAF generates the string and then uses that as the field to match component in its inspection. WAF separates the header names in the string using
|
1157
|
+
* Inspect a string containing the list of the request's header names, ordered as they appear in the web request that WAF receives for inspection. WAF generates the string and then uses that as the field to match component in its inspection. WAF separates the header names in the string using commas and no added spaces. Matches against the header order string are case insensitive.
|
1114
1158
|
*/
|
1115
1159
|
HeaderOrder?: HeaderOrder;
|
1116
1160
|
}
|
@@ -1726,7 +1770,7 @@ declare namespace WAFV2 {
|
|
1726
1770
|
}
|
1727
1771
|
export interface ListAvailableManagedRuleGroupVersionsRequest {
|
1728
1772
|
/**
|
1729
|
-
* The name of the managed rule group vendor. You use this, along with the rule group name, to identify
|
1773
|
+
* The name of the managed rule group vendor. You use this, along with the rule group name, to identify a rule group.
|
1730
1774
|
*/
|
1731
1775
|
VendorName: VendorName;
|
1732
1776
|
/**
|
@@ -2029,6 +2073,45 @@ declare namespace WAFV2 {
|
|
2029
2073
|
DefaultBehavior: FilterBehavior;
|
2030
2074
|
}
|
2031
2075
|
export type LoginPathString = string;
|
2076
|
+
export interface ManagedProductDescriptor {
|
2077
|
+
/**
|
2078
|
+
* The name of the managed rule group vendor. You use this, along with the rule group name, to identify a rule group.
|
2079
|
+
*/
|
2080
|
+
VendorName?: VendorName;
|
2081
|
+
/**
|
2082
|
+
* The name of the managed rule group. For example, AWSManagedRulesAnonymousIpList or AWSManagedRulesATPRuleSet.
|
2083
|
+
*/
|
2084
|
+
ManagedRuleSetName?: EntityName;
|
2085
|
+
/**
|
2086
|
+
* A unique identifier for the rule group. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.
|
2087
|
+
*/
|
2088
|
+
ProductId?: ProductId;
|
2089
|
+
/**
|
2090
|
+
* For Amazon Web Services Marketplace managed rule groups only, the link to the rule group product page.
|
2091
|
+
*/
|
2092
|
+
ProductLink?: ProductLink;
|
2093
|
+
/**
|
2094
|
+
* The display name for the managed rule group. For example, Anonymous IP list or Account takeover prevention.
|
2095
|
+
*/
|
2096
|
+
ProductTitle?: ProductTitle;
|
2097
|
+
/**
|
2098
|
+
* A short description of the managed rule group.
|
2099
|
+
*/
|
2100
|
+
ProductDescription?: ProductDescription;
|
2101
|
+
/**
|
2102
|
+
* The Amazon resource name (ARN) of the Amazon Simple Notification Service SNS topic that's used to provide notification of changes to the managed rule group. You can subscribe to the SNS topic to receive notifications when the managed rule group is modified, such as for new versions and for version expiration. For more information, see the Amazon Simple Notification Service Developer Guide.
|
2103
|
+
*/
|
2104
|
+
SnsTopicArn?: ResourceArn;
|
2105
|
+
/**
|
2106
|
+
* Indicates whether the rule group is versioned.
|
2107
|
+
*/
|
2108
|
+
IsVersioningSupported?: Boolean;
|
2109
|
+
/**
|
2110
|
+
* Indicates whether the rule group provides an advanced set of protections, such as the the Amazon Web Services Managed Rules rule groups that are used for WAF intelligent threat mitigation.
|
2111
|
+
*/
|
2112
|
+
IsAdvancedManagedRuleSet?: Boolean;
|
2113
|
+
}
|
2114
|
+
export type ManagedProductDescriptors = ManagedProductDescriptor[];
|
2032
2115
|
export interface ManagedRuleGroupConfig {
|
2033
2116
|
/**
|
2034
2117
|
* Instead of this setting, provide your configuration under AWSManagedRulesATPRuleSet.
|
@@ -2058,7 +2141,7 @@ declare namespace WAFV2 {
|
|
2058
2141
|
export type ManagedRuleGroupConfigs = ManagedRuleGroupConfig[];
|
2059
2142
|
export interface ManagedRuleGroupStatement {
|
2060
2143
|
/**
|
2061
|
-
* The name of the managed rule group vendor. You use this, along with the rule group name, to identify
|
2144
|
+
* The name of the managed rule group vendor. You use this, along with the rule group name, to identify a rule group.
|
2062
2145
|
*/
|
2063
2146
|
VendorName: VendorName;
|
2064
2147
|
/**
|
@@ -2089,7 +2172,7 @@ declare namespace WAFV2 {
|
|
2089
2172
|
export type ManagedRuleGroupSummaries = ManagedRuleGroupSummary[];
|
2090
2173
|
export interface ManagedRuleGroupSummary {
|
2091
2174
|
/**
|
2092
|
-
* The name of the managed rule group vendor. You use this, along with the rule group name, to identify
|
2175
|
+
* The name of the managed rule group vendor. You use this, along with the rule group name, to identify a rule group.
|
2093
2176
|
*/
|
2094
2177
|
VendorName?: VendorName;
|
2095
2178
|
/**
|
@@ -2260,6 +2343,10 @@ declare namespace WAFV2 {
|
|
2260
2343
|
export type PolicyString = string;
|
2261
2344
|
export type PopulationSize = number;
|
2262
2345
|
export type PositionalConstraint = "EXACTLY"|"STARTS_WITH"|"ENDS_WITH"|"CONTAINS"|"CONTAINS_WORD"|string;
|
2346
|
+
export type ProductDescription = string;
|
2347
|
+
export type ProductId = string;
|
2348
|
+
export type ProductLink = string;
|
2349
|
+
export type ProductTitle = string;
|
2263
2350
|
export type PublishedVersions = {[key: string]: ManagedRuleSetVersion};
|
2264
2351
|
export interface PutLoggingConfigurationRequest {
|
2265
2352
|
/**
|
@@ -3269,11 +3356,11 @@ declare namespace WAFV2 {
|
|
3269
3356
|
export type VersionsToPublish = {[key: string]: VersionToPublish};
|
3270
3357
|
export interface VisibilityConfig {
|
3271
3358
|
/**
|
3272
|
-
*
|
3359
|
+
* Indicates whether WAF should store a sampling of the web requests that match the rules. You can view the sampled requests through the WAF console.
|
3273
3360
|
*/
|
3274
3361
|
SampledRequestsEnabled: Boolean;
|
3275
3362
|
/**
|
3276
|
-
*
|
3363
|
+
* Indicates whether the associated resource sends metrics to Amazon CloudWatch. For the list of available metrics, see WAF Metrics in the WAF Developer Guide. For web ACLs, the metrics are for web requests that have the web ACL default action applied. WAF applies the default action to web requests that pass the inspection of all rules in the web ACL without being either allowed or blocked. For more information, see The web ACL default action in the WAF Developer Guide.
|
3277
3364
|
*/
|
3278
3365
|
CloudWatchMetricsEnabled: Boolean;
|
3279
3366
|
/**
|