Struct aws_sdk_iot::operation::update_certificate_provider::builders::UpdateCertificateProviderInputBuilder
source · #[non_exhaustive]pub struct UpdateCertificateProviderInputBuilder { /* private fields */ }Expand description
A builder for UpdateCertificateProviderInput.
Implementations§
source§impl UpdateCertificateProviderInputBuilder
impl UpdateCertificateProviderInputBuilder
sourcepub fn certificate_provider_name(self, input: impl Into<String>) -> Self
pub fn certificate_provider_name(self, input: impl Into<String>) -> Self
The name of the certificate provider.
This field is required.sourcepub fn set_certificate_provider_name(self, input: Option<String>) -> Self
pub fn set_certificate_provider_name(self, input: Option<String>) -> Self
The name of the certificate provider.
sourcepub fn get_certificate_provider_name(&self) -> &Option<String>
pub fn get_certificate_provider_name(&self) -> &Option<String>
The name of the certificate provider.
sourcepub fn lambda_function_arn(self, input: impl Into<String>) -> Self
pub fn lambda_function_arn(self, input: impl Into<String>) -> Self
The Lambda function ARN that's associated with the certificate provider.
sourcepub fn set_lambda_function_arn(self, input: Option<String>) -> Self
pub fn set_lambda_function_arn(self, input: Option<String>) -> Self
The Lambda function ARN that's associated with the certificate provider.
sourcepub fn get_lambda_function_arn(&self) -> &Option<String>
pub fn get_lambda_function_arn(&self) -> &Option<String>
The Lambda function ARN that's associated with the certificate provider.
sourcepub fn account_default_for_operations(
self,
input: CertificateProviderOperation,
) -> Self
pub fn account_default_for_operations( self, input: CertificateProviderOperation, ) -> Self
Appends an item to account_default_for_operations.
To override the contents of this collection use set_account_default_for_operations.
A list of the operations that the certificate provider will use to generate certificates. Valid value: CreateCertificateFromCsr.
sourcepub fn set_account_default_for_operations(
self,
input: Option<Vec<CertificateProviderOperation>>,
) -> Self
pub fn set_account_default_for_operations( self, input: Option<Vec<CertificateProviderOperation>>, ) -> Self
A list of the operations that the certificate provider will use to generate certificates. Valid value: CreateCertificateFromCsr.
sourcepub fn get_account_default_for_operations(
&self,
) -> &Option<Vec<CertificateProviderOperation>>
pub fn get_account_default_for_operations( &self, ) -> &Option<Vec<CertificateProviderOperation>>
A list of the operations that the certificate provider will use to generate certificates. Valid value: CreateCertificateFromCsr.
sourcepub fn build(self) -> Result<UpdateCertificateProviderInput, BuildError>
pub fn build(self) -> Result<UpdateCertificateProviderInput, BuildError>
Consumes the builder and constructs a UpdateCertificateProviderInput.
source§impl UpdateCertificateProviderInputBuilder
impl UpdateCertificateProviderInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<UpdateCertificateProviderOutput, SdkError<UpdateCertificateProviderError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<UpdateCertificateProviderOutput, SdkError<UpdateCertificateProviderError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateCertificateProviderInputBuilder
impl Clone for UpdateCertificateProviderInputBuilder
source§fn clone(&self) -> UpdateCertificateProviderInputBuilder
fn clone(&self) -> UpdateCertificateProviderInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for UpdateCertificateProviderInputBuilder
impl Default for UpdateCertificateProviderInputBuilder
source§fn default() -> UpdateCertificateProviderInputBuilder
fn default() -> UpdateCertificateProviderInputBuilder
source§impl PartialEq for UpdateCertificateProviderInputBuilder
impl PartialEq for UpdateCertificateProviderInputBuilder
source§fn eq(&self, other: &UpdateCertificateProviderInputBuilder) -> bool
fn eq(&self, other: &UpdateCertificateProviderInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateCertificateProviderInputBuilder
Auto Trait Implementations§
impl Freeze for UpdateCertificateProviderInputBuilder
impl RefUnwindSafe for UpdateCertificateProviderInputBuilder
impl Send for UpdateCertificateProviderInputBuilder
impl Sync for UpdateCertificateProviderInputBuilder
impl Unpin for UpdateCertificateProviderInputBuilder
impl UnwindSafe for UpdateCertificateProviderInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more