/* * Copyright 2010-2020 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.simpleemail.model; import java.io.Serializable; import com.amazonaws.AmazonWebServiceRequest; /** *
* Returns the details of the specified configuration set. For information about * using configuration sets, see the Amazon SES Developer Guide. *
** You can execute this operation no more than once per second. *
*/ public class DescribeConfigurationSetRequest extends AmazonWebServiceRequest implements Serializable { /** ** The name of the configuration set to describe. *
*/ private String configurationSetName; /** ** A list of configuration set attributes to return. *
*/ private java.util.List* The name of the configuration set to describe. *
* * @return* The name of the configuration set to describe. *
*/ public String getConfigurationSetName() { return configurationSetName; } /** ** The name of the configuration set to describe. *
* * @param configurationSetName* The name of the configuration set to describe. *
*/ public void setConfigurationSetName(String configurationSetName) { this.configurationSetName = configurationSetName; } /** ** The name of the configuration set to describe. *
** Returns a reference to this object so that method calls can be chained * together. * * @param configurationSetName
* The name of the configuration set to describe. *
* @return A reference to this updated object so that method calls can be * chained together. */ public DescribeConfigurationSetRequest withConfigurationSetName(String configurationSetName) { this.configurationSetName = configurationSetName; return this; } /** ** A list of configuration set attributes to return. *
* * @return* A list of configuration set attributes to return. *
*/ public java.util.List* A list of configuration set attributes to return. *
* * @param configurationSetAttributeNames* A list of configuration set attributes to return. *
*/ public void setConfigurationSetAttributeNames( java.util.Collection* A list of configuration set attributes to return. *
** Returns a reference to this object so that method calls can be chained * together. * * @param configurationSetAttributeNames
* A list of configuration set attributes to return. *
* @return A reference to this updated object so that method calls can be * chained together. */ public DescribeConfigurationSetRequest withConfigurationSetAttributeNames( String... configurationSetAttributeNames) { if (getConfigurationSetAttributeNames() == null) { this.configurationSetAttributeNames = new java.util.ArrayList* A list of configuration set attributes to return. *
** Returns a reference to this object so that method calls can be chained * together. * * @param configurationSetAttributeNames
* A list of configuration set attributes to return. *
* @return A reference to this updated object so that method calls can be * chained together. */ public DescribeConfigurationSetRequest withConfigurationSetAttributeNames( java.util.Collection