@aws-sdk/client-amplify
Advanced tools
Comparing version 3.629.0 to 3.630.0
@@ -22,2 +22,6 @@ import { SENSITIVE_STRING } from "@smithy/smithy-client"; | ||
}; | ||
export const CacheConfigType = { | ||
AMPLIFY_MANAGED: "AMPLIFY_MANAGED", | ||
AMPLIFY_MANAGED_NO_COOKIES: "AMPLIFY_MANAGED_NO_COOKIES", | ||
}; | ||
export const Platform = { | ||
@@ -24,0 +28,0 @@ WEB: "WEB", |
@@ -19,2 +19,3 @@ import { loadRestJsonErrorCode, parseJsonBody as parseBody, parseJsonErrorBody as parseErrorBody } from "@aws-sdk/core"; | ||
buildSpec: [], | ||
cacheConfig: (_) => _json(_), | ||
customHeaders: [], | ||
@@ -470,2 +471,3 @@ customRules: (_) => _json(_), | ||
buildSpec: [], | ||
cacheConfig: (_) => _json(_), | ||
customHeaders: [], | ||
@@ -1210,2 +1212,3 @@ customRules: (_) => _json(_), | ||
buildSpec: __expectString, | ||
cacheConfig: _json, | ||
createTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))), | ||
@@ -1212,0 +1215,0 @@ customHeaders: __expectString, |
@@ -83,2 +83,5 @@ import { Command as $Command } from "@smithy/smithy-client"; | ||
* }, | ||
* cacheConfig: { // CacheConfig | ||
* type: "AMPLIFY_MANAGED" || "AMPLIFY_MANAGED_NO_COOKIES", // required | ||
* }, | ||
* }; | ||
@@ -144,2 +147,5 @@ * const command = new CreateAppCommand(input); | ||
* // repositoryCloneMethod: "SSH" || "TOKEN" || "SIGV4", | ||
* // cacheConfig: { // CacheConfig | ||
* // type: "AMPLIFY_MANAGED" || "AMPLIFY_MANAGED_NO_COOKIES", // required | ||
* // }, | ||
* // }, | ||
@@ -146,0 +152,0 @@ * // }; |
@@ -99,2 +99,5 @@ import { Command as $Command } from "@smithy/smithy-client"; | ||
* // repositoryCloneMethod: "SSH" || "TOKEN" || "SIGV4", | ||
* // cacheConfig: { // CacheConfig | ||
* // type: "AMPLIFY_MANAGED" || "AMPLIFY_MANAGED_NO_COOKIES", // required | ||
* // }, | ||
* // }, | ||
@@ -101,0 +104,0 @@ * // }; |
@@ -99,2 +99,5 @@ import { Command as $Command } from "@smithy/smithy-client"; | ||
* // repositoryCloneMethod: "SSH" || "TOKEN" || "SIGV4", | ||
* // cacheConfig: { // CacheConfig | ||
* // type: "AMPLIFY_MANAGED" || "AMPLIFY_MANAGED_NO_COOKIES", // required | ||
* // }, | ||
* // }, | ||
@@ -101,0 +104,0 @@ * // }; |
@@ -101,2 +101,5 @@ import { Command as $Command } from "@smithy/smithy-client"; | ||
* // repositoryCloneMethod: "SSH" || "TOKEN" || "SIGV4", | ||
* // cacheConfig: { // CacheConfig | ||
* // type: "AMPLIFY_MANAGED" || "AMPLIFY_MANAGED_NO_COOKIES", // required | ||
* // }, | ||
* // }, | ||
@@ -103,0 +106,0 @@ * // ], |
@@ -81,2 +81,5 @@ import { Command as $Command } from "@smithy/smithy-client"; | ||
* accessToken: "STRING_VALUE", | ||
* cacheConfig: { // CacheConfig | ||
* type: "AMPLIFY_MANAGED" || "AMPLIFY_MANAGED_NO_COOKIES", // required | ||
* }, | ||
* }; | ||
@@ -142,2 +145,5 @@ * const command = new UpdateAppCommand(input); | ||
* // repositoryCloneMethod: "SSH" || "TOKEN" || "SIGV4", | ||
* // cacheConfig: { // CacheConfig | ||
* // type: "AMPLIFY_MANAGED" || "AMPLIFY_MANAGED_NO_COOKIES", // required | ||
* // }, | ||
* // }, | ||
@@ -144,0 +150,0 @@ * // }; |
@@ -30,2 +30,11 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; | ||
} | ||
export declare const CacheConfigType: { | ||
readonly AMPLIFY_MANAGED: "AMPLIFY_MANAGED"; | ||
readonly AMPLIFY_MANAGED_NO_COOKIES: "AMPLIFY_MANAGED_NO_COOKIES"; | ||
}; | ||
export type CacheConfigType = | ||
(typeof CacheConfigType)[keyof typeof CacheConfigType]; | ||
export interface CacheConfig { | ||
type: CacheConfigType | undefined; | ||
} | ||
export interface CustomRule { | ||
@@ -63,2 +72,3 @@ source: string | undefined; | ||
autoBranchCreationConfig?: AutoBranchCreationConfig; | ||
cacheConfig?: CacheConfig; | ||
} | ||
@@ -103,2 +113,3 @@ export interface ProductionBranch { | ||
repositoryCloneMethod?: RepositoryCloneMethod; | ||
cacheConfig?: CacheConfig; | ||
} | ||
@@ -604,2 +615,3 @@ export interface CreateAppResult { | ||
accessToken?: string; | ||
cacheConfig?: CacheConfig; | ||
} | ||
@@ -606,0 +618,0 @@ export interface UpdateAppResult { |
{ | ||
"name": "@aws-sdk/client-amplify", | ||
"description": "AWS SDK for JavaScript Amplify Client for Node.js, Browser and React Native", | ||
"version": "3.629.0", | ||
"version": "3.630.0", | ||
"scripts": { | ||
@@ -6,0 +6,0 @@ "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
745025
17644