#[non_exhaustive]pub struct CreateEnvironmentAccountConnectionInput { /* private fields */ }
Implementations
sourceimpl CreateEnvironmentAccountConnectionInput
impl CreateEnvironmentAccountConnectionInput
sourcepub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<CreateEnvironmentAccountConnection, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<CreateEnvironmentAccountConnection, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateEnvironmentAccountConnection
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateEnvironmentAccountConnectionInput
.
sourceimpl CreateEnvironmentAccountConnectionInput
impl CreateEnvironmentAccountConnectionInput
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
When included, if two identical requests are made with the same client token, Proton returns the environment account connection that the first request created.
sourcepub fn management_account_id(&self) -> Option<&str>
pub fn management_account_id(&self) -> Option<&str>
The ID of the management account that accepts or rejects the environment account connection. You create and manage the Proton environment in this account. If the management account accepts the environment account connection, Proton can use the associated IAM role to provision environment infrastructure resources in the associated environment account.
sourcepub fn role_arn(&self) -> Option<&str>
pub fn role_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the IAM service role that's created in the environment account. Proton uses this role to provision infrastructure resources in the associated environment account.
sourcepub fn environment_name(&self) -> Option<&str>
pub fn environment_name(&self) -> Option<&str>
The name of the Proton environment that's created in the associated management account.
An optional list of metadata items that you can associate with the Proton environment account connection. A tag is a key-value pair.
For more information, see Proton resources and tagging in the Proton Administrator Guide.
sourcepub fn component_role_arn(&self) -> Option<&str>
pub fn component_role_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the IAM service role that Proton uses when provisioning directly defined components in the associated environment account. It determines the scope of infrastructure that a component can provision in the account.
You must specify componentRoleArn
to allow directly defined components to be associated with any environments running in this account.
For more information about components, see Proton components in the Proton Administrator Guide.
Trait Implementations
sourceimpl Clone for CreateEnvironmentAccountConnectionInput
impl Clone for CreateEnvironmentAccountConnectionInput
sourcefn clone(&self) -> CreateEnvironmentAccountConnectionInput
fn clone(&self) -> CreateEnvironmentAccountConnectionInput
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<CreateEnvironmentAccountConnectionInput> for CreateEnvironmentAccountConnectionInput
impl PartialEq<CreateEnvironmentAccountConnectionInput> for CreateEnvironmentAccountConnectionInput
sourcefn eq(&self, other: &CreateEnvironmentAccountConnectionInput) -> bool
fn eq(&self, other: &CreateEnvironmentAccountConnectionInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &CreateEnvironmentAccountConnectionInput) -> bool
fn ne(&self, other: &CreateEnvironmentAccountConnectionInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for CreateEnvironmentAccountConnectionInput
Auto Trait Implementations
impl RefUnwindSafe for CreateEnvironmentAccountConnectionInput
impl Send for CreateEnvironmentAccountConnectionInput
impl Sync for CreateEnvironmentAccountConnectionInput
impl Unpin for CreateEnvironmentAccountConnectionInput
impl UnwindSafe for CreateEnvironmentAccountConnectionInput
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