C# Class Amazon.EC2.Model.Tag

Describes a tag.
Show file Open project: aws/aws-sdk-net Class Usage Examples

Public Methods

Method Description
Tag ( ) : System

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

Tag ( string key ) : System

Instantiates Tag with the parameterized properties

Tag ( string key, string value ) : System

Instantiates Tag with the parameterized properties

Private Methods

Method Description
IsSetKey ( ) : bool
IsSetValue ( ) : bool

Method Details

Tag() public method

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

Tag() public method

Instantiates Tag with the parameterized properties
public Tag ( string key ) : System
key string The key of the tag. Constraints: Tag keys are case-sensitive and accept a maximum of 127 Unicode characters. May not begin with aws:
return System

Tag() public method

Instantiates Tag with the parameterized properties
public Tag ( string key, string value ) : System
key string The key of the tag. Constraints: Tag keys are case-sensitive and accept a maximum of 127 Unicode characters. May not begin with aws:
value string The value of the tag. Constraints: Tag values are case-sensitive and accept a maximum of 255 Unicode characters.
return System