#[non_exhaustive]pub struct GenerateOrganizationsAccessReportInput {
pub entity_path: Option<String>,
pub organizations_policy_id: Option<String>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.entity_path: Option<String>
The path of the Organizations entity (root, OU, or account). You can build an entity path using the known structure of your organization. For example, assume that your account ID is 123456789012
and its parent OU ID is ou-rge0-awsabcde
. The organization root ID is r-f6g7h8i9j0example
and your organization ID is o-a1b2c3d4e5
. Your entity path is o-a1b2c3d4e5/r-f6g7h8i9j0example/ou-rge0-awsabcde/123456789012
.
organizations_policy_id: Option<String>
The identifier of the Organizations service control policy (SCP). This parameter is optional.
This ID is used to generate information about when an account principal that is limited by the SCP attempted to access an Amazon Web Services service.
Implementations
sourceimpl GenerateOrganizationsAccessReportInput
impl GenerateOrganizationsAccessReportInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GenerateOrganizationsAccessReport, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GenerateOrganizationsAccessReport, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<GenerateOrganizationsAccessReport
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GenerateOrganizationsAccessReportInput
sourceimpl GenerateOrganizationsAccessReportInput
impl GenerateOrganizationsAccessReportInput
sourcepub fn entity_path(&self) -> Option<&str>
pub fn entity_path(&self) -> Option<&str>
The path of the Organizations entity (root, OU, or account). You can build an entity path using the known structure of your organization. For example, assume that your account ID is 123456789012
and its parent OU ID is ou-rge0-awsabcde
. The organization root ID is r-f6g7h8i9j0example
and your organization ID is o-a1b2c3d4e5
. Your entity path is o-a1b2c3d4e5/r-f6g7h8i9j0example/ou-rge0-awsabcde/123456789012
.
sourcepub fn organizations_policy_id(&self) -> Option<&str>
pub fn organizations_policy_id(&self) -> Option<&str>
The identifier of the Organizations service control policy (SCP). This parameter is optional.
This ID is used to generate information about when an account principal that is limited by the SCP attempted to access an Amazon Web Services service.
Trait Implementations
sourceimpl Clone for GenerateOrganizationsAccessReportInput
impl Clone for GenerateOrganizationsAccessReportInput
sourcefn clone(&self) -> GenerateOrganizationsAccessReportInput
fn clone(&self) -> GenerateOrganizationsAccessReportInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl PartialEq<GenerateOrganizationsAccessReportInput> for GenerateOrganizationsAccessReportInput
impl PartialEq<GenerateOrganizationsAccessReportInput> for GenerateOrganizationsAccessReportInput
sourcefn eq(&self, other: &GenerateOrganizationsAccessReportInput) -> bool
fn eq(&self, other: &GenerateOrganizationsAccessReportInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &GenerateOrganizationsAccessReportInput) -> bool
fn ne(&self, other: &GenerateOrganizationsAccessReportInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for GenerateOrganizationsAccessReportInput
Auto Trait Implementations
impl RefUnwindSafe for GenerateOrganizationsAccessReportInput
impl Send for GenerateOrganizationsAccessReportInput
impl Sync for GenerateOrganizationsAccessReportInput
impl Unpin for GenerateOrganizationsAccessReportInput
impl UnwindSafe for GenerateOrganizationsAccessReportInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more