/* * 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.scheduler.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** * * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class CreateScheduleGroupRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *
* Unique, case-sensitive identifier you provide to ensure the idempotency of the request. If you do not specify a * client token, EventBridge Scheduler uses a randomly generated token for the request to ensure idempotency. *
*/ private String clientToken; /** ** The name of the schedule group that you are creating. *
*/ private String name; /** ** The list of tags to associate with the schedule group. *
*/ private java.util.List* Unique, case-sensitive identifier you provide to ensure the idempotency of the request. If you do not specify a * client token, EventBridge Scheduler uses a randomly generated token for the request to ensure idempotency. *
* * @param clientToken * Unique, case-sensitive identifier you provide to ensure the idempotency of the request. If you do not * specify a client token, EventBridge Scheduler uses a randomly generated token for the request to ensure * idempotency. */ public void setClientToken(String clientToken) { this.clientToken = clientToken; } /** ** Unique, case-sensitive identifier you provide to ensure the idempotency of the request. If you do not specify a * client token, EventBridge Scheduler uses a randomly generated token for the request to ensure idempotency. *
* * @return Unique, case-sensitive identifier you provide to ensure the idempotency of the request. If you do not * specify a client token, EventBridge Scheduler uses a randomly generated token for the request to ensure * idempotency. */ public String getClientToken() { return this.clientToken; } /** ** Unique, case-sensitive identifier you provide to ensure the idempotency of the request. If you do not specify a * client token, EventBridge Scheduler uses a randomly generated token for the request to ensure idempotency. *
* * @param clientToken * Unique, case-sensitive identifier you provide to ensure the idempotency of the request. If you do not * specify a client token, EventBridge Scheduler uses a randomly generated token for the request to ensure * idempotency. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateScheduleGroupRequest withClientToken(String clientToken) { setClientToken(clientToken); return this; } /** ** The name of the schedule group that you are creating. *
* * @param name * The name of the schedule group that you are creating. */ public void setName(String name) { this.name = name; } /** ** The name of the schedule group that you are creating. *
* * @return The name of the schedule group that you are creating. */ public String getName() { return this.name; } /** ** The name of the schedule group that you are creating. *
* * @param name * The name of the schedule group that you are creating. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateScheduleGroupRequest withName(String name) { setName(name); return this; } /** ** The list of tags to associate with the schedule group. *
* * @return The list of tags to associate with the schedule group. */ public java.util.List* The list of tags to associate with the schedule group. *
* * @param tags * The list of tags to associate with the schedule group. */ public void setTags(java.util.Collection* The list of tags to associate with the schedule group. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the * existing values. *
* * @param tags * The list of tags to associate with the schedule group. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateScheduleGroupRequest withTags(Tag... tags) { if (this.tags == null) { setTags(new java.util.ArrayList* The list of tags to associate with the schedule group. *
* * @param tags * The list of tags to associate with the schedule group. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateScheduleGroupRequest withTags(java.util.Collection