Struct aws_sdk_proton::operation::update_environment_account_connection::UpdateEnvironmentAccountConnectionInput
source · #[non_exhaustive]pub struct UpdateEnvironmentAccountConnectionInput {
pub id: Option<String>,
pub role_arn: Option<String>,
pub component_role_arn: Option<String>,
pub codebuild_role_arn: 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.id: Option<String>
The ID of the environment account connection to update.
role_arn: Option<String>
The Amazon Resource Name (ARN) of the IAM service role that's associated with the environment account connection to update.
component_role_arn: Option<String>
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.
The environment account connection must have a componentRoleArn
to allow directly defined components to be associated with any environments running in the account.
For more information about components, see Proton components in the Proton User Guide.
codebuild_role_arn: Option<String>
The Amazon Resource Name (ARN) of an IAM service role in the environment account. Proton uses this role to provision infrastructure resources using CodeBuild-based provisioning in the associated environment account.
Implementations§
source§impl UpdateEnvironmentAccountConnectionInput
impl UpdateEnvironmentAccountConnectionInput
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 associated with the environment account connection to update.
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.
The environment account connection must have a componentRoleArn
to allow directly defined components to be associated with any environments running in the account.
For more information about components, see Proton components in the Proton User Guide.
sourcepub fn codebuild_role_arn(&self) -> Option<&str>
pub fn codebuild_role_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of an IAM service role in the environment account. Proton uses this role to provision infrastructure resources using CodeBuild-based provisioning in the associated environment account.
source§impl UpdateEnvironmentAccountConnectionInput
impl UpdateEnvironmentAccountConnectionInput
sourcepub fn builder() -> UpdateEnvironmentAccountConnectionInputBuilder
pub fn builder() -> UpdateEnvironmentAccountConnectionInputBuilder
Creates a new builder-style object to manufacture UpdateEnvironmentAccountConnectionInput
.
Trait Implementations§
source§impl Clone for UpdateEnvironmentAccountConnectionInput
impl Clone for UpdateEnvironmentAccountConnectionInput
source§fn clone(&self) -> UpdateEnvironmentAccountConnectionInput
fn clone(&self) -> UpdateEnvironmentAccountConnectionInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for UpdateEnvironmentAccountConnectionInput
impl PartialEq for UpdateEnvironmentAccountConnectionInput
source§fn eq(&self, other: &UpdateEnvironmentAccountConnectionInput) -> bool
fn eq(&self, other: &UpdateEnvironmentAccountConnectionInput) -> bool
self
and other
values to be equal, and is used
by ==
.