All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.autoscaling.model.DescribeLaunchConfigurationsRequest Maven / Gradle / Ivy

/*
 * Copyright 2010-2011 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.autoscaling.model;
import com.amazonaws.AmazonWebServiceRequest;

/**
 * Container for the parameters to the {@link com.amazonaws.services.autoscaling.AmazonAutoScaling#describeLaunchConfigurations(DescribeLaunchConfigurationsRequest) DescribeLaunchConfigurations operation}.
 * 

* Returns a full description of the launch configurations given the * specified names. *

*

* If no names are specified, then the full details of all launch * configurations are returned. *

* * @see com.amazonaws.services.autoscaling.AmazonAutoScaling#describeLaunchConfigurations(DescribeLaunchConfigurationsRequest) */ public class DescribeLaunchConfigurationsRequest extends AmazonWebServiceRequest { /** * */ private java.util.List launchConfigurationNames; /** * *

* Constraints:
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*/ private String nextToken; /** * *

* Constraints:
* Range: 20 - 100
*/ private Integer maxRecords; /** * * * @return */ public java.util.List getLaunchConfigurationNames() { if (launchConfigurationNames == null) { launchConfigurationNames = new java.util.ArrayList(); } return launchConfigurationNames; } /** * * * @param launchConfigurationNames */ public void setLaunchConfigurationNames(java.util.Collection launchConfigurationNames) { java.util.List launchConfigurationNamesCopy = new java.util.ArrayList(); if (launchConfigurationNames != null) { launchConfigurationNamesCopy.addAll(launchConfigurationNames); } this.launchConfigurationNames = launchConfigurationNamesCopy; } /** * *

* Returns a reference to this object so that method calls can be chained together. * * @param launchConfigurationNames * * @return A reference to this updated object so that method calls can be chained * together. */ public DescribeLaunchConfigurationsRequest withLaunchConfigurationNames(String... launchConfigurationNames) { for (String value : launchConfigurationNames) { getLaunchConfigurationNames().add(value); } return this; } /** * *

* Returns a reference to this object so that method calls can be chained together. * * @param launchConfigurationNames * * @return A reference to this updated object so that method calls can be chained * together. */ public DescribeLaunchConfigurationsRequest withLaunchConfigurationNames(java.util.Collection launchConfigurationNames) { java.util.List launchConfigurationNamesCopy = new java.util.ArrayList(); if (launchConfigurationNames != null) { launchConfigurationNamesCopy.addAll(launchConfigurationNames); } this.launchConfigurationNames = launchConfigurationNamesCopy; return this; } /** * *

* Constraints:
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
* * @return */ public String getNextToken() { return nextToken; } /** * *

* Constraints:
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
* * @param nextToken */ public void setNextToken(String nextToken) { this.nextToken = nextToken; } /** * *

* Returns a reference to this object so that method calls can be chained together. *

* Constraints:
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
* * @param nextToken * * @return A reference to this updated object so that method calls can be chained * together. */ public DescribeLaunchConfigurationsRequest withNextToken(String nextToken) { this.nextToken = nextToken; return this; } /** * *

* Constraints:
* Range: 20 - 100
* * @return */ public Integer getMaxRecords() { return maxRecords; } /** * *

* Constraints:
* Range: 20 - 100
* * @param maxRecords */ public void setMaxRecords(Integer maxRecords) { this.maxRecords = maxRecords; } /** * *

* Returns a reference to this object so that method calls can be chained together. *

* Constraints:
* Range: 20 - 100
* * @param maxRecords * * @return A reference to this updated object so that method calls can be chained * together. */ public DescribeLaunchConfigurationsRequest withMaxRecords(Integer maxRecords) { this.maxRecords = maxRecords; return this; } /** * Returns a string representation of this object; useful for testing and * debugging. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); sb.append("LaunchConfigurationNames: " + launchConfigurationNames + ", "); sb.append("NextToken: " + nextToken + ", "); sb.append("MaxRecords: " + maxRecords + ", "); sb.append("}"); return sb.toString(); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy