Struct aws_sdk_lambda::operation::update_code_signing_config::builders::UpdateCodeSigningConfigInputBuilder
source · #[non_exhaustive]pub struct UpdateCodeSigningConfigInputBuilder { /* private fields */ }Expand description
A builder for UpdateCodeSigningConfigInput.
Implementations§
source§impl UpdateCodeSigningConfigInputBuilder
impl UpdateCodeSigningConfigInputBuilder
sourcepub fn code_signing_config_arn(self, input: impl Into<String>) -> Self
pub fn code_signing_config_arn(self, input: impl Into<String>) -> Self
The The Amazon Resource Name (ARN) of the code signing configuration.
This field is required.sourcepub fn set_code_signing_config_arn(self, input: Option<String>) -> Self
pub fn set_code_signing_config_arn(self, input: Option<String>) -> Self
The The Amazon Resource Name (ARN) of the code signing configuration.
sourcepub fn get_code_signing_config_arn(&self) -> &Option<String>
pub fn get_code_signing_config_arn(&self) -> &Option<String>
The The Amazon Resource Name (ARN) of the code signing configuration.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
Descriptive name for this code signing configuration.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
Descriptive name for this code signing configuration.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
Descriptive name for this code signing configuration.
sourcepub fn allowed_publishers(self, input: AllowedPublishers) -> Self
pub fn allowed_publishers(self, input: AllowedPublishers) -> Self
Signing profiles for this code signing configuration.
sourcepub fn set_allowed_publishers(self, input: Option<AllowedPublishers>) -> Self
pub fn set_allowed_publishers(self, input: Option<AllowedPublishers>) -> Self
Signing profiles for this code signing configuration.
sourcepub fn get_allowed_publishers(&self) -> &Option<AllowedPublishers>
pub fn get_allowed_publishers(&self) -> &Option<AllowedPublishers>
Signing profiles for this code signing configuration.
sourcepub fn code_signing_policies(self, input: CodeSigningPolicies) -> Self
pub fn code_signing_policies(self, input: CodeSigningPolicies) -> Self
The code signing policy.
sourcepub fn set_code_signing_policies(
self,
input: Option<CodeSigningPolicies>,
) -> Self
pub fn set_code_signing_policies( self, input: Option<CodeSigningPolicies>, ) -> Self
The code signing policy.
sourcepub fn get_code_signing_policies(&self) -> &Option<CodeSigningPolicies>
pub fn get_code_signing_policies(&self) -> &Option<CodeSigningPolicies>
The code signing policy.
sourcepub fn build(self) -> Result<UpdateCodeSigningConfigInput, BuildError>
pub fn build(self) -> Result<UpdateCodeSigningConfigInput, BuildError>
Consumes the builder and constructs a UpdateCodeSigningConfigInput.
source§impl UpdateCodeSigningConfigInputBuilder
impl UpdateCodeSigningConfigInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<UpdateCodeSigningConfigOutput, SdkError<UpdateCodeSigningConfigError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<UpdateCodeSigningConfigOutput, SdkError<UpdateCodeSigningConfigError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateCodeSigningConfigInputBuilder
impl Clone for UpdateCodeSigningConfigInputBuilder
source§fn clone(&self) -> UpdateCodeSigningConfigInputBuilder
fn clone(&self) -> UpdateCodeSigningConfigInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for UpdateCodeSigningConfigInputBuilder
impl Default for UpdateCodeSigningConfigInputBuilder
source§fn default() -> UpdateCodeSigningConfigInputBuilder
fn default() -> UpdateCodeSigningConfigInputBuilder
source§impl PartialEq for UpdateCodeSigningConfigInputBuilder
impl PartialEq for UpdateCodeSigningConfigInputBuilder
source§fn eq(&self, other: &UpdateCodeSigningConfigInputBuilder) -> bool
fn eq(&self, other: &UpdateCodeSigningConfigInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateCodeSigningConfigInputBuilder
Auto Trait Implementations§
impl Freeze for UpdateCodeSigningConfigInputBuilder
impl RefUnwindSafe for UpdateCodeSigningConfigInputBuilder
impl Send for UpdateCodeSigningConfigInputBuilder
impl Sync for UpdateCodeSigningConfigInputBuilder
impl Unpin for UpdateCodeSigningConfigInputBuilder
impl UnwindSafe for UpdateCodeSigningConfigInputBuilder
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> 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