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

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

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

* */ private String apiCachingBehavior; /** *

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

* * * @param apiCachingBehavior * Caching behavior.

*