Struct aws_sdk_iot::input::CreateDimensionInput [−][src]
#[non_exhaustive]pub struct CreateDimensionInput {
pub name: Option<String>,
pub type: Option<DimensionType>,
pub string_values: Option<Vec<String>>,
pub tags: Option<Vec<Tag>>,
pub client_request_token: Option<String>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: Option<String>
A unique identifier for the dimension. Choose something that describes the type and value to make it easy to remember what it does.
type: Option<DimensionType>
Specifies the type of dimension. Supported types: TOPIC_FILTER.
string_values: Option<Vec<String>>
Specifies the value or list of values for the dimension. For TOPIC_FILTER
dimensions, this is a pattern used to match the MQTT topic (for example, "admin/#").
Metadata that can be used to manage the dimension.
client_request_token: Option<String>
Each dimension must have a unique client request token. If you try to create a new dimension with the same token as a dimension that already exists, an exception occurs. If you omit this value, Amazon Web Services SDKs will automatically generate a unique client request.
Implementations
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<CreateDimension, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<CreateDimension, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateDimension
>
Creates a new builder-style object to manufacture CreateDimensionInput
A unique identifier for the dimension. Choose something that describes the type and value to make it easy to remember what it does.
Specifies the type of dimension. Supported types: TOPIC_FILTER.
Specifies the value or list of values for the dimension. For TOPIC_FILTER
dimensions, this is a pattern used to match the MQTT topic (for example, "admin/#").
Metadata that can be used to manage the dimension.
Each dimension must have a unique client request token. If you try to create a new dimension with the same token as a dimension that already exists, an exception occurs. If you omit this value, Amazon Web Services SDKs will automatically generate a unique client request.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for CreateDimensionInput
impl Send for CreateDimensionInput
impl Sync for CreateDimensionInput
impl Unpin for CreateDimensionInput
impl UnwindSafe for CreateDimensionInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more