#[non_exhaustive]pub struct UpdateEnvironmentAccountConnectionInput { /* private fields */ }
Implementations§
source§impl UpdateEnvironmentAccountConnectionInput
impl UpdateEnvironmentAccountConnectionInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateEnvironmentAccountConnection, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateEnvironmentAccountConnection, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateEnvironmentAccountConnection
>
Examples found in repository?
8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230
pub async fn customize(
self,
) -> std::result::Result<
crate::operation::customize::CustomizableOperation<
crate::operation::UpdateEnvironmentAccountConnection,
aws_http::retry::AwsResponseRetryClassifier,
>,
aws_smithy_http::result::SdkError<
crate::error::UpdateEnvironmentAccountConnectionError,
>,
> {
let handle = self.handle.clone();
let operation = self
.inner
.build()
.map_err(aws_smithy_http::result::SdkError::construction_failure)?
.make_operation(&handle.conf)
.await
.map_err(aws_smithy_http::result::SdkError::construction_failure)?;
Ok(crate::operation::customize::CustomizableOperation { handle, operation })
}
/// Sends the request and returns the response.
///
/// If an error occurs, an `SdkError` will be returned with additional details that
/// can be matched against.
///
/// By default, any retryable failures will be retried twice. Retry behavior
/// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
/// set when configuring the client.
pub async fn send(
self,
) -> std::result::Result<
crate::output::UpdateEnvironmentAccountConnectionOutput,
aws_smithy_http::result::SdkError<
crate::error::UpdateEnvironmentAccountConnectionError,
>,
> {
let op = self
.inner
.build()
.map_err(aws_smithy_http::result::SdkError::construction_failure)?
.make_operation(&self.handle.conf)
.await
.map_err(aws_smithy_http::result::SdkError::construction_failure)?;
self.handle.client.call(op).await
}
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateEnvironmentAccountConnectionInput
.
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.
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 more