/* * 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.ssmsap.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *
* The summary of the SAP application registered with AWS Systems Manager for SAP. *
* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class ApplicationSummary implements Serializable, Cloneable, StructuredPojo { /** ** The ID of the application. *
*/ private String id; /** ** The type of the application. *
*/ private String type; /** ** The Amazon Resource Name (ARN) of the application. *
*/ private String arn; /** ** The tags on the application. *
*/ private java.util.Map* The ID of the application. *
* * @param id * The ID of the application. */ public void setId(String id) { this.id = id; } /** ** The ID of the application. *
* * @return The ID of the application. */ public String getId() { return this.id; } /** ** The ID of the application. *
* * @param id * The ID of the application. * @return Returns a reference to this object so that method calls can be chained together. */ public ApplicationSummary withId(String id) { setId(id); return this; } /** ** The type of the application. *
* * @param type * The type of the application. * @see ApplicationType */ public void setType(String type) { this.type = type; } /** ** The type of the application. *
* * @return The type of the application. * @see ApplicationType */ public String getType() { return this.type; } /** ** The type of the application. *
* * @param type * The type of the application. * @return Returns a reference to this object so that method calls can be chained together. * @see ApplicationType */ public ApplicationSummary withType(String type) { setType(type); return this; } /** ** The type of the application. *
* * @param type * The type of the application. * @return Returns a reference to this object so that method calls can be chained together. * @see ApplicationType */ public ApplicationSummary withType(ApplicationType type) { this.type = type.toString(); return this; } /** ** The Amazon Resource Name (ARN) of the application. *
* * @param arn * The Amazon Resource Name (ARN) of the application. */ public void setArn(String arn) { this.arn = arn; } /** ** The Amazon Resource Name (ARN) of the application. *
* * @return The Amazon Resource Name (ARN) of the application. */ public String getArn() { return this.arn; } /** ** The Amazon Resource Name (ARN) of the application. *
* * @param arn * The Amazon Resource Name (ARN) of the application. * @return Returns a reference to this object so that method calls can be chained together. */ public ApplicationSummary withArn(String arn) { setArn(arn); return this; } /** ** The tags on the application. *
* * @return The tags on the application. */ public java.util.Map* The tags on the application. *
* * @param tags * The tags on the application. */ public void setTags(java.util.Map* The tags on the application. *
* * @param tags * The tags on the application. * @return Returns a reference to this object so that method calls can be chained together. */ public ApplicationSummary withTags(java.util.Map