/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.appsync.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** *
* Represents the input of a UpdateApiCache
operation.
*
* The GraphQL API ID. *
*/ private String apiId; /** ** TTL in seconds for cache entries. *
** Valid values are 1–3,600 seconds. *
*/ private Long ttl; /** ** Caching behavior. *
** FULL_REQUEST_CACHING: All requests are fully cached. *
** PER_RESOLVER_CACHING: Individual resolvers that you specify are cached. *
** The cache instance type. Valid values are *
*
* SMALL
*
* MEDIUM
*
* LARGE
*
* XLARGE
*
* LARGE_2X
*
* LARGE_4X
*
* LARGE_8X
(not available in all regions)
*
* LARGE_12X
*
* Historically, instance types were identified by an EC2-style value. As of July 2020, this is deprecated, and the * generic identifiers above should be used. *
** The following legacy instance types are available, but their use is discouraged: *
** T2_SMALL: A t2.small instance type. *
** T2_MEDIUM: A t2.medium instance type. *
** R4_LARGE: A r4.large instance type. *
** R4_XLARGE: A r4.xlarge instance type. *
** R4_2XLARGE: A r4.2xlarge instance type. *
** R4_4XLARGE: A r4.4xlarge instance type. *
** R4_8XLARGE: A r4.8xlarge instance type. *
** The GraphQL API ID. *
* * @param apiId * The GraphQL API ID. */ public void setApiId(String apiId) { this.apiId = apiId; } /** ** The GraphQL API ID. *
* * @return The GraphQL API ID. */ public String getApiId() { return this.apiId; } /** ** The GraphQL API ID. *
* * @param apiId * The GraphQL API ID. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateApiCacheRequest withApiId(String apiId) { setApiId(apiId); return this; } /** ** TTL in seconds for cache entries. *
** Valid values are 1–3,600 seconds. *
* * @param ttl * TTL in seconds for cache entries. ** Valid values are 1–3,600 seconds. */ public void setTtl(Long ttl) { this.ttl = ttl; } /** *
* TTL in seconds for cache entries. *
** Valid values are 1–3,600 seconds. *
* * @return TTL in seconds for cache entries. ** Valid values are 1–3,600 seconds. */ public Long getTtl() { return this.ttl; } /** *
* TTL in seconds for cache entries. *
** Valid values are 1–3,600 seconds. *
* * @param ttl * TTL in seconds for cache entries. ** Valid values are 1–3,600 seconds. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateApiCacheRequest withTtl(Long ttl) { setTtl(ttl); return this; } /** *
* Caching behavior. *
** FULL_REQUEST_CACHING: All requests are fully cached. *
** PER_RESOLVER_CACHING: Individual resolvers that you specify are cached. *
** FULL_REQUEST_CACHING: All requests are fully cached. *
** PER_RESOLVER_CACHING: Individual resolvers that you specify are cached. *
** Caching behavior. *
** FULL_REQUEST_CACHING: All requests are fully cached. *
** PER_RESOLVER_CACHING: Individual resolvers that you specify are cached. *
** FULL_REQUEST_CACHING: All requests are fully cached. *
** PER_RESOLVER_CACHING: Individual resolvers that you specify are cached. *
** Caching behavior. *
** FULL_REQUEST_CACHING: All requests are fully cached. *
** PER_RESOLVER_CACHING: Individual resolvers that you specify are cached. *
** FULL_REQUEST_CACHING: All requests are fully cached. *
** PER_RESOLVER_CACHING: Individual resolvers that you specify are cached. *
** Caching behavior. *
** FULL_REQUEST_CACHING: All requests are fully cached. *
** PER_RESOLVER_CACHING: Individual resolvers that you specify are cached. *
** FULL_REQUEST_CACHING: All requests are fully cached. *
** PER_RESOLVER_CACHING: Individual resolvers that you specify are cached. *
** The cache instance type. Valid values are *
*
* SMALL
*
* MEDIUM
*
* LARGE
*
* XLARGE
*
* LARGE_2X
*
* LARGE_4X
*
* LARGE_8X
(not available in all regions)
*
* LARGE_12X
*
* Historically, instance types were identified by an EC2-style value. As of July 2020, this is deprecated, and the * generic identifiers above should be used. *
** The following legacy instance types are available, but their use is discouraged: *
** T2_SMALL: A t2.small instance type. *
** T2_MEDIUM: A t2.medium instance type. *
** R4_LARGE: A r4.large instance type. *
** R4_XLARGE: A r4.xlarge instance type. *
** R4_2XLARGE: A r4.2xlarge instance type. *
** R4_4XLARGE: A r4.4xlarge instance type. *
** R4_8XLARGE: A r4.8xlarge instance type. *
*
* SMALL
*
* MEDIUM
*
* LARGE
*
* XLARGE
*
* LARGE_2X
*
* LARGE_4X
*
* LARGE_8X
(not available in all regions)
*
* LARGE_12X
*
* Historically, instance types were identified by an EC2-style value. As of July 2020, this is deprecated, * and the generic identifiers above should be used. *
** The following legacy instance types are available, but their use is discouraged: *
** T2_SMALL: A t2.small instance type. *
** T2_MEDIUM: A t2.medium instance type. *
** R4_LARGE: A r4.large instance type. *
** R4_XLARGE: A r4.xlarge instance type. *
** R4_2XLARGE: A r4.2xlarge instance type. *
** R4_4XLARGE: A r4.4xlarge instance type. *
** R4_8XLARGE: A r4.8xlarge instance type. *
** The cache instance type. Valid values are *
*
* SMALL
*
* MEDIUM
*
* LARGE
*
* XLARGE
*
* LARGE_2X
*
* LARGE_4X
*
* LARGE_8X
(not available in all regions)
*
* LARGE_12X
*
* Historically, instance types were identified by an EC2-style value. As of July 2020, this is deprecated, and the * generic identifiers above should be used. *
** The following legacy instance types are available, but their use is discouraged: *
** T2_SMALL: A t2.small instance type. *
** T2_MEDIUM: A t2.medium instance type. *
** R4_LARGE: A r4.large instance type. *
** R4_XLARGE: A r4.xlarge instance type. *
** R4_2XLARGE: A r4.2xlarge instance type. *
** R4_4XLARGE: A r4.4xlarge instance type. *
** R4_8XLARGE: A r4.8xlarge instance type. *
*
* SMALL
*
* MEDIUM
*
* LARGE
*
* XLARGE
*
* LARGE_2X
*
* LARGE_4X
*
* LARGE_8X
(not available in all regions)
*
* LARGE_12X
*
* Historically, instance types were identified by an EC2-style value. As of July 2020, this is deprecated, * and the generic identifiers above should be used. *
** The following legacy instance types are available, but their use is discouraged: *
** T2_SMALL: A t2.small instance type. *
** T2_MEDIUM: A t2.medium instance type. *
** R4_LARGE: A r4.large instance type. *
** R4_XLARGE: A r4.xlarge instance type. *
** R4_2XLARGE: A r4.2xlarge instance type. *
** R4_4XLARGE: A r4.4xlarge instance type. *
** R4_8XLARGE: A r4.8xlarge instance type. *
** The cache instance type. Valid values are *
*
* SMALL
*
* MEDIUM
*
* LARGE
*
* XLARGE
*
* LARGE_2X
*
* LARGE_4X
*
* LARGE_8X
(not available in all regions)
*
* LARGE_12X
*
* Historically, instance types were identified by an EC2-style value. As of July 2020, this is deprecated, and the * generic identifiers above should be used. *
** The following legacy instance types are available, but their use is discouraged: *
** T2_SMALL: A t2.small instance type. *
** T2_MEDIUM: A t2.medium instance type. *
** R4_LARGE: A r4.large instance type. *
** R4_XLARGE: A r4.xlarge instance type. *
** R4_2XLARGE: A r4.2xlarge instance type. *
** R4_4XLARGE: A r4.4xlarge instance type. *
** R4_8XLARGE: A r4.8xlarge instance type. *
*
* SMALL
*
* MEDIUM
*
* LARGE
*
* XLARGE
*
* LARGE_2X
*
* LARGE_4X
*
* LARGE_8X
(not available in all regions)
*
* LARGE_12X
*
* Historically, instance types were identified by an EC2-style value. As of July 2020, this is deprecated, * and the generic identifiers above should be used. *
** The following legacy instance types are available, but their use is discouraged: *
** T2_SMALL: A t2.small instance type. *
** T2_MEDIUM: A t2.medium instance type. *
** R4_LARGE: A r4.large instance type. *
** R4_XLARGE: A r4.xlarge instance type. *
** R4_2XLARGE: A r4.2xlarge instance type. *
** R4_4XLARGE: A r4.4xlarge instance type. *
** R4_8XLARGE: A r4.8xlarge instance type. *
** The cache instance type. Valid values are *
*
* SMALL
*
* MEDIUM
*
* LARGE
*
* XLARGE
*
* LARGE_2X
*
* LARGE_4X
*
* LARGE_8X
(not available in all regions)
*
* LARGE_12X
*
* Historically, instance types were identified by an EC2-style value. As of July 2020, this is deprecated, and the * generic identifiers above should be used. *
** The following legacy instance types are available, but their use is discouraged: *
** T2_SMALL: A t2.small instance type. *
** T2_MEDIUM: A t2.medium instance type. *
** R4_LARGE: A r4.large instance type. *
** R4_XLARGE: A r4.xlarge instance type. *
** R4_2XLARGE: A r4.2xlarge instance type. *
** R4_4XLARGE: A r4.4xlarge instance type. *
** R4_8XLARGE: A r4.8xlarge instance type. *
*
* SMALL
*
* MEDIUM
*
* LARGE
*
* XLARGE
*
* LARGE_2X
*
* LARGE_4X
*
* LARGE_8X
(not available in all regions)
*
* LARGE_12X
*
* Historically, instance types were identified by an EC2-style value. As of July 2020, this is deprecated, * and the generic identifiers above should be used. *
** The following legacy instance types are available, but their use is discouraged: *
** T2_SMALL: A t2.small instance type. *
** T2_MEDIUM: A t2.medium instance type. *
** R4_LARGE: A r4.large instance type. *
** R4_XLARGE: A r4.xlarge instance type. *
** R4_2XLARGE: A r4.2xlarge instance type. *
** R4_4XLARGE: A r4.4xlarge instance type. *
** R4_8XLARGE: A r4.8xlarge instance type. *
*