/* * 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.elasticbeanstalk.model; import java.io.Serializable; import javax.annotation.Generated; /** *
* Describes the settings for a specified configuration set. *
* * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class DescribeConfigurationOptionsResult extends com.amazonaws.AmazonWebServiceResult* The name of the solution stack these configuration options belong to. *
*/ private String solutionStackName; /** ** The ARN of the platform version. *
*/ private String platformArn; /** ** A list of ConfigurationOptionDescription. *
*/ private com.amazonaws.internal.SdkInternalList* The name of the solution stack these configuration options belong to. *
* * @param solutionStackName * The name of the solution stack these configuration options belong to. */ public void setSolutionStackName(String solutionStackName) { this.solutionStackName = solutionStackName; } /** ** The name of the solution stack these configuration options belong to. *
* * @return The name of the solution stack these configuration options belong to. */ public String getSolutionStackName() { return this.solutionStackName; } /** ** The name of the solution stack these configuration options belong to. *
* * @param solutionStackName * The name of the solution stack these configuration options belong to. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeConfigurationOptionsResult withSolutionStackName(String solutionStackName) { setSolutionStackName(solutionStackName); return this; } /** ** The ARN of the platform version. *
* * @param platformArn * The ARN of the platform version. */ public void setPlatformArn(String platformArn) { this.platformArn = platformArn; } /** ** The ARN of the platform version. *
* * @return The ARN of the platform version. */ public String getPlatformArn() { return this.platformArn; } /** ** The ARN of the platform version. *
* * @param platformArn * The ARN of the platform version. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeConfigurationOptionsResult withPlatformArn(String platformArn) { setPlatformArn(platformArn); return this; } /** ** A list of ConfigurationOptionDescription. *
* * @return A list of ConfigurationOptionDescription. */ public java.util.List* A list of ConfigurationOptionDescription. *
* * @param options * A list of ConfigurationOptionDescription. */ public void setOptions(java.util.Collection* A list of ConfigurationOptionDescription. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setOptions(java.util.Collection)} or {@link #withOptions(java.util.Collection)} if you want to override * the existing values. *
* * @param options * A list of ConfigurationOptionDescription. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeConfigurationOptionsResult withOptions(ConfigurationOptionDescription... options) { if (this.options == null) { setOptions(new com.amazonaws.internal.SdkInternalList* A list of ConfigurationOptionDescription. *
* * @param options * A list of ConfigurationOptionDescription. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeConfigurationOptionsResult withOptions(java.util.Collection