/* * 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.cloudwatchevidently.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *
* A structure that contains configuration information about an Evidently project. *
* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class ProjectSummary implements Serializable, Cloneable, StructuredPojo { /** ** The number of experiments currently in the project. *
*/ private Long activeExperimentCount; /** ** The number of ongoing launches currently in the project. *
*/ private Long activeLaunchCount; /** ** The name or ARN of the project. *
*/ private String arn; /** ** The date and time that the project is created. *
*/ private java.util.Date createdTime; /** ** The description of the project. *
*/ private String description; /** ** The number of experiments currently in the project. *
*/ private Long experimentCount; /** ** The number of features currently in the project. *
*/ private Long featureCount; /** ** The date and time that the project was most recently updated. *
*/ private java.util.Date lastUpdatedTime; /** ** The number of launches currently in the project, including launches that are ongoing, completed, and not started * yet. *
*/ private Long launchCount; /** ** The name of the project. *
*/ private String name; /** ** The current state of the project. *
*/ private String status; /** ** The list of tag keys and values associated with this project. *
*/ private java.util.Map* The number of experiments currently in the project. *
* * @param activeExperimentCount * The number of experiments currently in the project. */ public void setActiveExperimentCount(Long activeExperimentCount) { this.activeExperimentCount = activeExperimentCount; } /** ** The number of experiments currently in the project. *
* * @return The number of experiments currently in the project. */ public Long getActiveExperimentCount() { return this.activeExperimentCount; } /** ** The number of experiments currently in the project. *
* * @param activeExperimentCount * The number of experiments currently in the project. * @return Returns a reference to this object so that method calls can be chained together. */ public ProjectSummary withActiveExperimentCount(Long activeExperimentCount) { setActiveExperimentCount(activeExperimentCount); return this; } /** ** The number of ongoing launches currently in the project. *
* * @param activeLaunchCount * The number of ongoing launches currently in the project. */ public void setActiveLaunchCount(Long activeLaunchCount) { this.activeLaunchCount = activeLaunchCount; } /** ** The number of ongoing launches currently in the project. *
* * @return The number of ongoing launches currently in the project. */ public Long getActiveLaunchCount() { return this.activeLaunchCount; } /** ** The number of ongoing launches currently in the project. *
* * @param activeLaunchCount * The number of ongoing launches currently in the project. * @return Returns a reference to this object so that method calls can be chained together. */ public ProjectSummary withActiveLaunchCount(Long activeLaunchCount) { setActiveLaunchCount(activeLaunchCount); return this; } /** ** The name or ARN of the project. *
* * @param arn * The name or ARN of the project. */ public void setArn(String arn) { this.arn = arn; } /** ** The name or ARN of the project. *
* * @return The name or ARN of the project. */ public String getArn() { return this.arn; } /** ** The name or ARN of the project. *
* * @param arn * The name or ARN of the project. * @return Returns a reference to this object so that method calls can be chained together. */ public ProjectSummary withArn(String arn) { setArn(arn); return this; } /** ** The date and time that the project is created. *
* * @param createdTime * The date and time that the project is created. */ public void setCreatedTime(java.util.Date createdTime) { this.createdTime = createdTime; } /** ** The date and time that the project is created. *
* * @return The date and time that the project is created. */ public java.util.Date getCreatedTime() { return this.createdTime; } /** ** The date and time that the project is created. *
* * @param createdTime * The date and time that the project is created. * @return Returns a reference to this object so that method calls can be chained together. */ public ProjectSummary withCreatedTime(java.util.Date createdTime) { setCreatedTime(createdTime); return this; } /** ** The description of the project. *
* * @param description * The description of the project. */ public void setDescription(String description) { this.description = description; } /** ** The description of the project. *
* * @return The description of the project. */ public String getDescription() { return this.description; } /** ** The description of the project. *
* * @param description * The description of the project. * @return Returns a reference to this object so that method calls can be chained together. */ public ProjectSummary withDescription(String description) { setDescription(description); return this; } /** ** The number of experiments currently in the project. *
* * @param experimentCount * The number of experiments currently in the project. */ public void setExperimentCount(Long experimentCount) { this.experimentCount = experimentCount; } /** ** The number of experiments currently in the project. *
* * @return The number of experiments currently in the project. */ public Long getExperimentCount() { return this.experimentCount; } /** ** The number of experiments currently in the project. *
* * @param experimentCount * The number of experiments currently in the project. * @return Returns a reference to this object so that method calls can be chained together. */ public ProjectSummary withExperimentCount(Long experimentCount) { setExperimentCount(experimentCount); return this; } /** ** The number of features currently in the project. *
* * @param featureCount * The number of features currently in the project. */ public void setFeatureCount(Long featureCount) { this.featureCount = featureCount; } /** ** The number of features currently in the project. *
* * @return The number of features currently in the project. */ public Long getFeatureCount() { return this.featureCount; } /** ** The number of features currently in the project. *
* * @param featureCount * The number of features currently in the project. * @return Returns a reference to this object so that method calls can be chained together. */ public ProjectSummary withFeatureCount(Long featureCount) { setFeatureCount(featureCount); return this; } /** ** The date and time that the project was most recently updated. *
* * @param lastUpdatedTime * The date and time that the project was most recently updated. */ public void setLastUpdatedTime(java.util.Date lastUpdatedTime) { this.lastUpdatedTime = lastUpdatedTime; } /** ** The date and time that the project was most recently updated. *
* * @return The date and time that the project was most recently updated. */ public java.util.Date getLastUpdatedTime() { return this.lastUpdatedTime; } /** ** The date and time that the project was most recently updated. *
* * @param lastUpdatedTime * The date and time that the project was most recently updated. * @return Returns a reference to this object so that method calls can be chained together. */ public ProjectSummary withLastUpdatedTime(java.util.Date lastUpdatedTime) { setLastUpdatedTime(lastUpdatedTime); return this; } /** ** The number of launches currently in the project, including launches that are ongoing, completed, and not started * yet. *
* * @param launchCount * The number of launches currently in the project, including launches that are ongoing, completed, and not * started yet. */ public void setLaunchCount(Long launchCount) { this.launchCount = launchCount; } /** ** The number of launches currently in the project, including launches that are ongoing, completed, and not started * yet. *
* * @return The number of launches currently in the project, including launches that are ongoing, completed, and not * started yet. */ public Long getLaunchCount() { return this.launchCount; } /** ** The number of launches currently in the project, including launches that are ongoing, completed, and not started * yet. *
* * @param launchCount * The number of launches currently in the project, including launches that are ongoing, completed, and not * started yet. * @return Returns a reference to this object so that method calls can be chained together. */ public ProjectSummary withLaunchCount(Long launchCount) { setLaunchCount(launchCount); return this; } /** ** The name of the project. *
* * @param name * The name of the project. */ public void setName(String name) { this.name = name; } /** ** The name of the project. *
* * @return The name of the project. */ public String getName() { return this.name; } /** ** The name of the project. *
* * @param name * The name of the project. * @return Returns a reference to this object so that method calls can be chained together. */ public ProjectSummary withName(String name) { setName(name); return this; } /** ** The current state of the project. *
* * @param status * The current state of the project. * @see ProjectStatus */ public void setStatus(String status) { this.status = status; } /** ** The current state of the project. *
* * @return The current state of the project. * @see ProjectStatus */ public String getStatus() { return this.status; } /** ** The current state of the project. *
* * @param status * The current state of the project. * @return Returns a reference to this object so that method calls can be chained together. * @see ProjectStatus */ public ProjectSummary withStatus(String status) { setStatus(status); return this; } /** ** The current state of the project. *
* * @param status * The current state of the project. * @return Returns a reference to this object so that method calls can be chained together. * @see ProjectStatus */ public ProjectSummary withStatus(ProjectStatus status) { this.status = status.toString(); return this; } /** ** The list of tag keys and values associated with this project. *
* * @return The list of tag keys and values associated with this project. */ public java.util.Map* The list of tag keys and values associated with this project. *
* * @param tags * The list of tag keys and values associated with this project. */ public void setTags(java.util.Map* The list of tag keys and values associated with this project. *
* * @param tags * The list of tag keys and values associated with this project. * @return Returns a reference to this object so that method calls can be chained together. */ public ProjectSummary withTags(java.util.Map