/* * 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. *

* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class ApiCache implements Serializable, Cloneable, StructuredPojo { /** *

* TTL in seconds for cache entries. *

*

* Valid values are 1–3,600 seconds. *

*/ private Long ttl; /** *

* Caching behavior. *

* */ private String apiCachingBehavior; /** *

* 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 *

* *

* 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: *

* */ private String type; /** *

* The cache instance status. *

* */ private String status; /** *

* 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. *

* * * @param apiCachingBehavior * Caching behavior.

*