Struct rusoto_ses::DescribeConfigurationSetRequest[][src]

pub struct DescribeConfigurationSetRequest {
    pub configuration_set_attribute_names: Option<Vec<String>>,
    pub configuration_set_name: String,
}

Represents a request to return the details of a configuration set. Configuration sets enable you to publish email sending events. For information about using configuration sets, see the Amazon SES Developer Guide.

Fields

A list of configuration set attributes to return.

The name of the configuration set to describe.

Trait Implementations

impl Default for DescribeConfigurationSetRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for DescribeConfigurationSetRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeConfigurationSetRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DescribeConfigurationSetRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations