#[non_exhaustive]pub struct AuthenticationConfiguration {
pub connection_arn: Option<String>,
pub access_role_arn: Option<String>,
}
Expand description
Describes resources needed to authenticate access to some source repositories. The specific resource depends on the repository provider.
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.connection_arn: Option<String>
The Amazon Resource Name (ARN) of the App Runner connection that enables the App Runner service to connect to a source repository. It's required for GitHub code repositories.
access_role_arn: Option<String>
The Amazon Resource Name (ARN) of the IAM role that grants the App Runner service access to a source repository. It's required for ECR image repositories (but not for ECR Public repositories).
Implementations§
source§impl AuthenticationConfiguration
impl AuthenticationConfiguration
sourcepub fn connection_arn(&self) -> Option<&str>
pub fn connection_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the App Runner connection that enables the App Runner service to connect to a source repository. It's required for GitHub code repositories.
sourcepub fn access_role_arn(&self) -> Option<&str>
pub fn access_role_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the IAM role that grants the App Runner service access to a source repository. It's required for ECR image repositories (but not for ECR Public repositories).
source§impl AuthenticationConfiguration
impl AuthenticationConfiguration
sourcepub fn builder() -> AuthenticationConfigurationBuilder
pub fn builder() -> AuthenticationConfigurationBuilder
Creates a new builder-style object to manufacture AuthenticationConfiguration
.
Trait Implementations§
source§impl Clone for AuthenticationConfiguration
impl Clone for AuthenticationConfiguration
source§fn clone(&self) -> AuthenticationConfiguration
fn clone(&self) -> AuthenticationConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AuthenticationConfiguration
impl Debug for AuthenticationConfiguration
source§impl PartialEq for AuthenticationConfiguration
impl PartialEq for AuthenticationConfiguration
source§fn eq(&self, other: &AuthenticationConfiguration) -> bool
fn eq(&self, other: &AuthenticationConfiguration) -> bool
self
and other
values to be equal, and is used
by ==
.