/* * 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.fis.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *
* Provides a summary of an experiment template. *
* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class ExperimentTemplateSummary implements Serializable, Cloneable, StructuredPojo { /** ** The ID of the experiment template. *
*/ private String id; /** ** The description of the experiment template. *
*/ private String description; /** ** The time that the experiment template was created. *
*/ private java.util.Date creationTime; /** ** The time that the experiment template was last updated. *
*/ private java.util.Date lastUpdateTime; /** ** The tags for the experiment template. *
*/ private java.util.Map* The ID of the experiment template. *
* * @param id * The ID of the experiment template. */ public void setId(String id) { this.id = id; } /** ** The ID of the experiment template. *
* * @return The ID of the experiment template. */ public String getId() { return this.id; } /** ** The ID of the experiment template. *
* * @param id * The ID of the experiment template. * @return Returns a reference to this object so that method calls can be chained together. */ public ExperimentTemplateSummary withId(String id) { setId(id); return this; } /** ** The description of the experiment template. *
* * @param description * The description of the experiment template. */ public void setDescription(String description) { this.description = description; } /** ** The description of the experiment template. *
* * @return The description of the experiment template. */ public String getDescription() { return this.description; } /** ** The description of the experiment template. *
* * @param description * The description of the experiment template. * @return Returns a reference to this object so that method calls can be chained together. */ public ExperimentTemplateSummary withDescription(String description) { setDescription(description); return this; } /** ** The time that the experiment template was created. *
* * @param creationTime * The time that the experiment template was created. */ public void setCreationTime(java.util.Date creationTime) { this.creationTime = creationTime; } /** ** The time that the experiment template was created. *
* * @return The time that the experiment template was created. */ public java.util.Date getCreationTime() { return this.creationTime; } /** ** The time that the experiment template was created. *
* * @param creationTime * The time that the experiment template was created. * @return Returns a reference to this object so that method calls can be chained together. */ public ExperimentTemplateSummary withCreationTime(java.util.Date creationTime) { setCreationTime(creationTime); return this; } /** ** The time that the experiment template was last updated. *
* * @param lastUpdateTime * The time that the experiment template was last updated. */ public void setLastUpdateTime(java.util.Date lastUpdateTime) { this.lastUpdateTime = lastUpdateTime; } /** ** The time that the experiment template was last updated. *
* * @return The time that the experiment template was last updated. */ public java.util.Date getLastUpdateTime() { return this.lastUpdateTime; } /** ** The time that the experiment template was last updated. *
* * @param lastUpdateTime * The time that the experiment template was last updated. * @return Returns a reference to this object so that method calls can be chained together. */ public ExperimentTemplateSummary withLastUpdateTime(java.util.Date lastUpdateTime) { setLastUpdateTime(lastUpdateTime); return this; } /** ** The tags for the experiment template. *
* * @return The tags for the experiment template. */ public java.util.Map* The tags for the experiment template. *
* * @param tags * The tags for the experiment template. */ public void setTags(java.util.Map* The tags for the experiment template. *
* * @param tags * The tags for the experiment template. * @return Returns a reference to this object so that method calls can be chained together. */ public ExperimentTemplateSummary withTags(java.util.Map