[][src]Struct rusoto_iot::CreateCustomMetricRequest

pub struct CreateCustomMetricRequest {
    pub client_request_token: String,
    pub display_name: Option<String>,
    pub metric_name: String,
    pub metric_type: String,
    pub tags: Option<Vec<Tag>>,
}

Fields

client_request_token: String

Each custom metric must have a unique client request token. If you try to create a new custom metric that already exists with a different token, an exception occurs. If you omit this value, AWS SDKs will automatically generate a unique client request.

display_name: Option<String>

Field represents a friendly name in the console for the custom metric; it doesn't have to be unique. Don't use this name as the metric identifier in the device metric report. Can be updated once defined.

metric_name: String

The name of the custom metric. This will be used in the metric report submitted from the device/thing. Shouldn't begin with aws:. Cannot be updated once defined.

metric_type: String

The type of the custom metric. Types include string-list, ip-address-list, number-list, and number.

tags: Option<Vec<Tag>>

Metadata that can be used to manage the custom metric.

Trait Implementations

impl Clone for CreateCustomMetricRequest[src]

impl Debug for CreateCustomMetricRequest[src]

impl Default for CreateCustomMetricRequest[src]

impl PartialEq<CreateCustomMetricRequest> for CreateCustomMetricRequest[src]

impl Serialize for CreateCustomMetricRequest[src]

impl StructuralPartialEq for CreateCustomMetricRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.