C# Class Amazon.SimpleNotificationService.Model.CreateTopicRequest

Container for the parameters to the CreateTopic operation. Creates a topic to which notifications can be published. Users can create at most 100,000 topics. For more information, see http://aws.amazon.com/sns. This action is idempotent, so if the requester already owns a topic with the specified name, that topic's ARN is returned without creating a new topic.
Inheritance: AmazonSimpleNotificationServiceRequest
Show file Open project: aws/aws-sdk-net Class Usage Examples

Public Methods

Method Description
CreateTopicRequest ( ) : System

Empty constructor used to set properties independently even when a simple constructor is available

CreateTopicRequest ( string name ) : System

Instantiates CreateTopicRequest with the parameterized properties

Private Methods

Method Description
IsSetName ( ) : bool

Method Details

CreateTopicRequest() public method

Empty constructor used to set properties independently even when a simple constructor is available
public CreateTopicRequest ( ) : System
return System

CreateTopicRequest() public method

Instantiates CreateTopicRequest with the parameterized properties
public CreateTopicRequest ( string name ) : System
name string The name of the topic you want to create. Constraints: Topic names must be made up of only uppercase and lowercase ASCII letters, numbers, underscores, and hyphens, and must be between 1 and 256 characters long.
return System