Struct aws_sdk_iot::types::DocumentParameter
source · #[non_exhaustive]pub struct DocumentParameter { /* private fields */ }
Expand description
A map of key-value pairs containing the patterns that need to be replaced in a managed template job document schema. You can use the description of each key as a guidance to specify the inputs during runtime when creating a job.
documentParameters
can only be used when creating jobs from Amazon Web Services managed templates. This parameter can't be used with custom job templates or to create jobs from them.
Implementations§
source§impl DocumentParameter
impl DocumentParameter
sourcepub fn key(&self) -> Option<&str>
pub fn key(&self) -> Option<&str>
Key of the map field containing the patterns that need to be replaced in a managed template job document schema.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
Description of the map field containing the patterns that need to be replaced in a managed template job document schema.
sourcepub fn regex(&self) -> Option<&str>
pub fn regex(&self) -> Option<&str>
A regular expression of the patterns that need to be replaced in a managed template job document schema.
source§impl DocumentParameter
impl DocumentParameter
sourcepub fn builder() -> DocumentParameterBuilder
pub fn builder() -> DocumentParameterBuilder
Creates a new builder-style object to manufacture DocumentParameter
.
Trait Implementations§
source§impl Clone for DocumentParameter
impl Clone for DocumentParameter
source§fn clone(&self) -> DocumentParameter
fn clone(&self) -> DocumentParameter
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DocumentParameter
impl Debug for DocumentParameter
source§impl PartialEq<DocumentParameter> for DocumentParameter
impl PartialEq<DocumentParameter> for DocumentParameter
source§fn eq(&self, other: &DocumentParameter) -> bool
fn eq(&self, other: &DocumentParameter) -> bool
self
and other
values to be equal, and is used
by ==
.