/* * 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.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *
* The ApiCache
object.
*
* 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. *
** Transit encryption flag when connecting to cache. You cannot update this setting after creation. *
*/ private Boolean transitEncryptionEnabled; /** ** At-rest encryption flag for cache. You cannot update this setting after creation. *
*/ private Boolean atRestEncryptionEnabled; /** ** 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 cache instance status. *
** AVAILABLE: The instance is available for use. *
** CREATING: The instance is currently creating. *
** DELETING: The instance is currently deleting. *
** MODIFYING: The instance is currently modifying. *
** FAILED: The instance has failed creation. *
** 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 ApiCache 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. *
** Transit encryption flag when connecting to cache. You cannot update this setting after creation. *
* * @param transitEncryptionEnabled * Transit encryption flag when connecting to cache. You cannot update this setting after creation. */ public void setTransitEncryptionEnabled(Boolean transitEncryptionEnabled) { this.transitEncryptionEnabled = transitEncryptionEnabled; } /** ** Transit encryption flag when connecting to cache. You cannot update this setting after creation. *
* * @return Transit encryption flag when connecting to cache. You cannot update this setting after creation. */ public Boolean getTransitEncryptionEnabled() { return this.transitEncryptionEnabled; } /** ** Transit encryption flag when connecting to cache. You cannot update this setting after creation. *
* * @param transitEncryptionEnabled * Transit encryption flag when connecting to cache. You cannot update this setting after creation. * @return Returns a reference to this object so that method calls can be chained together. */ public ApiCache withTransitEncryptionEnabled(Boolean transitEncryptionEnabled) { setTransitEncryptionEnabled(transitEncryptionEnabled); return this; } /** ** Transit encryption flag when connecting to cache. You cannot update this setting after creation. *
* * @return Transit encryption flag when connecting to cache. You cannot update this setting after creation. */ public Boolean isTransitEncryptionEnabled() { return this.transitEncryptionEnabled; } /** ** At-rest encryption flag for cache. You cannot update this setting after creation. *
* * @param atRestEncryptionEnabled * At-rest encryption flag for cache. You cannot update this setting after creation. */ public void setAtRestEncryptionEnabled(Boolean atRestEncryptionEnabled) { this.atRestEncryptionEnabled = atRestEncryptionEnabled; } /** ** At-rest encryption flag for cache. You cannot update this setting after creation. *
* * @return At-rest encryption flag for cache. You cannot update this setting after creation. */ public Boolean getAtRestEncryptionEnabled() { return this.atRestEncryptionEnabled; } /** ** At-rest encryption flag for cache. You cannot update this setting after creation. *
* * @param atRestEncryptionEnabled * At-rest encryption flag for cache. You cannot update this setting after creation. * @return Returns a reference to this object so that method calls can be chained together. */ public ApiCache withAtRestEncryptionEnabled(Boolean atRestEncryptionEnabled) { setAtRestEncryptionEnabled(atRestEncryptionEnabled); return this; } /** ** At-rest encryption flag for cache. You cannot update this setting after creation. *
* * @return At-rest encryption flag for cache. You cannot update this setting after creation. */ public Boolean isAtRestEncryptionEnabled() { return this.atRestEncryptionEnabled; } /** ** 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. *
** The cache instance status. *
** AVAILABLE: The instance is available for use. *
** CREATING: The instance is currently creating. *
** DELETING: The instance is currently deleting. *
** MODIFYING: The instance is currently modifying. *
** FAILED: The instance has failed creation. *
** AVAILABLE: The instance is available for use. *
** CREATING: The instance is currently creating. *
** DELETING: The instance is currently deleting. *
** MODIFYING: The instance is currently modifying. *
** FAILED: The instance has failed creation. *
** The cache instance status. *
** AVAILABLE: The instance is available for use. *
** CREATING: The instance is currently creating. *
** DELETING: The instance is currently deleting. *
** MODIFYING: The instance is currently modifying. *
** FAILED: The instance has failed creation. *
** AVAILABLE: The instance is available for use. *
** CREATING: The instance is currently creating. *
** DELETING: The instance is currently deleting. *
** MODIFYING: The instance is currently modifying. *
** FAILED: The instance has failed creation. *
** The cache instance status. *
** AVAILABLE: The instance is available for use. *
** CREATING: The instance is currently creating. *
** DELETING: The instance is currently deleting. *
** MODIFYING: The instance is currently modifying. *
** FAILED: The instance has failed creation. *
** AVAILABLE: The instance is available for use. *
** CREATING: The instance is currently creating. *
** DELETING: The instance is currently deleting. *
** MODIFYING: The instance is currently modifying. *
** FAILED: The instance has failed creation. *
** The cache instance status. *
** AVAILABLE: The instance is available for use. *
** CREATING: The instance is currently creating. *
** DELETING: The instance is currently deleting. *
** MODIFYING: The instance is currently modifying. *
** FAILED: The instance has failed creation. *
** AVAILABLE: The instance is available for use. *
** CREATING: The instance is currently creating. *
** DELETING: The instance is currently deleting. *
** MODIFYING: The instance is currently modifying. *
** FAILED: The instance has failed creation. *
*