Struct aws_sdk_iot::types::builders::PolicyVersionIdentifierBuilder
source · #[non_exhaustive]pub struct PolicyVersionIdentifierBuilder { /* private fields */ }
Expand description
A builder for PolicyVersionIdentifier
.
Implementations§
source§impl PolicyVersionIdentifierBuilder
impl PolicyVersionIdentifierBuilder
sourcepub fn policy_name(self, input: impl Into<String>) -> Self
pub fn policy_name(self, input: impl Into<String>) -> Self
The name of the policy.
sourcepub fn set_policy_name(self, input: Option<String>) -> Self
pub fn set_policy_name(self, input: Option<String>) -> Self
The name of the policy.
sourcepub fn get_policy_name(&self) -> &Option<String>
pub fn get_policy_name(&self) -> &Option<String>
The name of the policy.
sourcepub fn policy_version_id(self, input: impl Into<String>) -> Self
pub fn policy_version_id(self, input: impl Into<String>) -> Self
The ID of the version of the policy associated with the resource.
sourcepub fn set_policy_version_id(self, input: Option<String>) -> Self
pub fn set_policy_version_id(self, input: Option<String>) -> Self
The ID of the version of the policy associated with the resource.
sourcepub fn get_policy_version_id(&self) -> &Option<String>
pub fn get_policy_version_id(&self) -> &Option<String>
The ID of the version of the policy associated with the resource.
sourcepub fn build(self) -> PolicyVersionIdentifier
pub fn build(self) -> PolicyVersionIdentifier
Consumes the builder and constructs a PolicyVersionIdentifier
.
Trait Implementations§
source§impl Clone for PolicyVersionIdentifierBuilder
impl Clone for PolicyVersionIdentifierBuilder
source§fn clone(&self) -> PolicyVersionIdentifierBuilder
fn clone(&self) -> PolicyVersionIdentifierBuilder
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 Default for PolicyVersionIdentifierBuilder
impl Default for PolicyVersionIdentifierBuilder
source§fn default() -> PolicyVersionIdentifierBuilder
fn default() -> PolicyVersionIdentifierBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<PolicyVersionIdentifierBuilder> for PolicyVersionIdentifierBuilder
impl PartialEq<PolicyVersionIdentifierBuilder> for PolicyVersionIdentifierBuilder
source§fn eq(&self, other: &PolicyVersionIdentifierBuilder) -> bool
fn eq(&self, other: &PolicyVersionIdentifierBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for PolicyVersionIdentifierBuilder
Auto Trait Implementations§
impl RefUnwindSafe for PolicyVersionIdentifierBuilder
impl Send for PolicyVersionIdentifierBuilder
impl Sync for PolicyVersionIdentifierBuilder
impl Unpin for PolicyVersionIdentifierBuilder
impl UnwindSafe for PolicyVersionIdentifierBuilder
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
Mutably borrows from an owned value. Read more