Struct aws_sdk_sagemaker::operation::get_lineage_group_policy::builders::GetLineageGroupPolicyOutputBuilder
source · #[non_exhaustive]pub struct GetLineageGroupPolicyOutputBuilder { /* private fields */ }
Expand description
A builder for GetLineageGroupPolicyOutput
.
Implementations§
source§impl GetLineageGroupPolicyOutputBuilder
impl GetLineageGroupPolicyOutputBuilder
sourcepub fn lineage_group_arn(self, input: impl Into<String>) -> Self
pub fn lineage_group_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the lineage group.
sourcepub fn set_lineage_group_arn(self, input: Option<String>) -> Self
pub fn set_lineage_group_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the lineage group.
sourcepub fn get_lineage_group_arn(&self) -> &Option<String>
pub fn get_lineage_group_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the lineage group.
sourcepub fn resource_policy(self, input: impl Into<String>) -> Self
pub fn resource_policy(self, input: impl Into<String>) -> Self
The resource policy that gives access to the lineage group in another account.
sourcepub fn set_resource_policy(self, input: Option<String>) -> Self
pub fn set_resource_policy(self, input: Option<String>) -> Self
The resource policy that gives access to the lineage group in another account.
sourcepub fn get_resource_policy(&self) -> &Option<String>
pub fn get_resource_policy(&self) -> &Option<String>
The resource policy that gives access to the lineage group in another account.
sourcepub fn build(self) -> GetLineageGroupPolicyOutput
pub fn build(self) -> GetLineageGroupPolicyOutput
Consumes the builder and constructs a GetLineageGroupPolicyOutput
.
Trait Implementations§
source§impl Clone for GetLineageGroupPolicyOutputBuilder
impl Clone for GetLineageGroupPolicyOutputBuilder
source§fn clone(&self) -> GetLineageGroupPolicyOutputBuilder
fn clone(&self) -> GetLineageGroupPolicyOutputBuilder
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 GetLineageGroupPolicyOutputBuilder
impl Default for GetLineageGroupPolicyOutputBuilder
source§fn default() -> GetLineageGroupPolicyOutputBuilder
fn default() -> GetLineageGroupPolicyOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetLineageGroupPolicyOutputBuilder
impl PartialEq for GetLineageGroupPolicyOutputBuilder
source§fn eq(&self, other: &GetLineageGroupPolicyOutputBuilder) -> bool
fn eq(&self, other: &GetLineageGroupPolicyOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetLineageGroupPolicyOutputBuilder
Auto Trait Implementations§
impl Freeze for GetLineageGroupPolicyOutputBuilder
impl RefUnwindSafe for GetLineageGroupPolicyOutputBuilder
impl Send for GetLineageGroupPolicyOutputBuilder
impl Sync for GetLineageGroupPolicyOutputBuilder
impl Unpin for GetLineageGroupPolicyOutputBuilder
impl UnwindSafe for GetLineageGroupPolicyOutputBuilder
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
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.