#[non_exhaustive]pub struct GetLineageGroupPolicyOutput {
pub lineage_group_arn: Option<String>,
pub resource_policy: Option<String>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.lineage_group_arn: Option<String>
The Amazon Resource Name (ARN) of the lineage group.
resource_policy: Option<String>
The resource policy that gives access to the lineage group in another account.
Implementations§
source§impl GetLineageGroupPolicyOutput
impl GetLineageGroupPolicyOutput
sourcepub fn lineage_group_arn(&self) -> Option<&str>
pub fn lineage_group_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the lineage group.
sourcepub fn resource_policy(&self) -> Option<&str>
pub fn resource_policy(&self) -> Option<&str>
The resource policy that gives access to the lineage group in another account.
source§impl GetLineageGroupPolicyOutput
impl GetLineageGroupPolicyOutput
sourcepub fn builder() -> GetLineageGroupPolicyOutputBuilder
pub fn builder() -> GetLineageGroupPolicyOutputBuilder
Creates a new builder-style object to manufacture GetLineageGroupPolicyOutput
.
Trait Implementations§
source§impl Clone for GetLineageGroupPolicyOutput
impl Clone for GetLineageGroupPolicyOutput
source§fn clone(&self) -> GetLineageGroupPolicyOutput
fn clone(&self) -> GetLineageGroupPolicyOutput
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 GetLineageGroupPolicyOutput
impl Debug for GetLineageGroupPolicyOutput
source§impl PartialEq for GetLineageGroupPolicyOutput
impl PartialEq for GetLineageGroupPolicyOutput
source§fn eq(&self, other: &GetLineageGroupPolicyOutput) -> bool
fn eq(&self, other: &GetLineageGroupPolicyOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetLineageGroupPolicyOutput
impl RequestId for GetLineageGroupPolicyOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for GetLineageGroupPolicyOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetLineageGroupPolicyOutput
impl Send for GetLineageGroupPolicyOutput
impl Sync for GetLineageGroupPolicyOutput
impl Unpin for GetLineageGroupPolicyOutput
impl UnwindSafe for GetLineageGroupPolicyOutput
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>
Creates a shared type from an unshared type.