#[non_exhaustive]pub struct CreateApplicationInput { /* private fields */ }Implementations§
source§impl CreateApplicationInput
impl CreateApplicationInput
sourcepub fn application_name(&self) -> Option<&str>
pub fn application_name(&self) -> Option<&str>
The name of the web application.
sourcepub fn application_description(&self) -> Option<&str>
pub fn application_description(&self) -> Option<&str>
An optional description of the web application.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don't reuse this client token if a new idempotent request is required.
sourcepub fn role_arn(&self) -> Option<&str>
pub fn role_arn(&self) -> Option<&str>
The ARN of the role that the web application assumes when it interacts with AWS IoT Core.
The name of the role must be in the form AWSIotFleetHub_random_string .
A set of key/value pairs that you can use to manage the web application resource.
source§impl CreateApplicationInput
impl CreateApplicationInput
sourcepub fn builder() -> CreateApplicationInputBuilder
pub fn builder() -> CreateApplicationInputBuilder
Creates a new builder-style object to manufacture CreateApplicationInput.
source§impl CreateApplicationInput
impl CreateApplicationInput
sourcepub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<CreateApplication, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( self, _config: &Config ) -> Result<Operation<CreateApplication, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateApplication>
Trait Implementations§
source§impl Clone for CreateApplicationInput
impl Clone for CreateApplicationInput
source§fn clone(&self) -> CreateApplicationInput
fn clone(&self) -> CreateApplicationInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for CreateApplicationInput
impl Debug for CreateApplicationInput
source§impl PartialEq<CreateApplicationInput> for CreateApplicationInput
impl PartialEq<CreateApplicationInput> for CreateApplicationInput
source§fn eq(&self, other: &CreateApplicationInput) -> bool
fn eq(&self, other: &CreateApplicationInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.