Struct rusoto_ds::DeregisterEventTopicRequest[][src]

pub struct DeregisterEventTopicRequest {
    pub directory_id: String,
    pub topic_name: String,
}

Removes the specified directory as a publisher to the specified SNS topic.

Fields

The Directory ID to remove as a publisher. This directory will no longer send messages to the specified SNS topic.

The name of the SNS topic from which to remove the directory as a publisher.

Trait Implementations

impl Default for DeregisterEventTopicRequest
[src]

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

impl Debug for DeregisterEventTopicRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DeregisterEventTopicRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DeregisterEventTopicRequest
[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