Struct aws_sdk_amplify::input::UpdateAppInput
source · [−]#[non_exhaustive]pub struct UpdateAppInput { /* private fields */ }Expand description
The request structure for the update app request.
Implementations
sourceimpl UpdateAppInput
impl UpdateAppInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateApp, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateApp, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateApp>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateAppInput.
sourceimpl UpdateAppInput
impl UpdateAppInput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description for an Amplify app.
sourcepub fn iam_service_role_arn(&self) -> Option<&str>
pub fn iam_service_role_arn(&self) -> Option<&str>
The AWS Identity and Access Management (IAM) service role for an Amplify app.
sourcepub fn environment_variables(&self) -> Option<&HashMap<String, String>>
pub fn environment_variables(&self) -> Option<&HashMap<String, String>>
The environment variables for an Amplify app.
sourcepub fn enable_branch_auto_build(&self) -> Option<bool>
pub fn enable_branch_auto_build(&self) -> Option<bool>
Enables branch auto-building for an Amplify app.
sourcepub fn enable_branch_auto_deletion(&self) -> Option<bool>
pub fn enable_branch_auto_deletion(&self) -> Option<bool>
Automatically disconnects a branch in the Amplify Console when you delete a branch from your Git repository.
sourcepub fn enable_basic_auth(&self) -> Option<bool>
pub fn enable_basic_auth(&self) -> Option<bool>
Enables basic authorization for an Amplify app.
sourcepub fn basic_auth_credentials(&self) -> Option<&str>
pub fn basic_auth_credentials(&self) -> Option<&str>
The basic authorization credentials for an Amplify app. You must base64-encode the authorization credentials and provide them in the format user:password.
sourcepub fn custom_rules(&self) -> Option<&[CustomRule]>
pub fn custom_rules(&self) -> Option<&[CustomRule]>
The custom redirect and rewrite rules for an Amplify app.
sourcepub fn build_spec(&self) -> Option<&str>
pub fn build_spec(&self) -> Option<&str>
The build specification (build spec) for an Amplify app.
sourcepub fn custom_headers(&self) -> Option<&str>
pub fn custom_headers(&self) -> Option<&str>
The custom HTTP headers for an Amplify app.
sourcepub fn enable_auto_branch_creation(&self) -> Option<bool>
pub fn enable_auto_branch_creation(&self) -> Option<bool>
Enables automated branch creation for an Amplify app.
sourcepub fn auto_branch_creation_patterns(&self) -> Option<&[String]>
pub fn auto_branch_creation_patterns(&self) -> Option<&[String]>
Describes the automated branch creation glob patterns for an Amplify app.
sourcepub fn auto_branch_creation_config(&self) -> Option<&AutoBranchCreationConfig>
pub fn auto_branch_creation_config(&self) -> Option<&AutoBranchCreationConfig>
The automated branch creation configuration for an Amplify app.
sourcepub fn repository(&self) -> Option<&str>
pub fn repository(&self) -> Option<&str>
The name of the repository for an Amplify app
sourcepub fn oauth_token(&self) -> Option<&str>
pub fn oauth_token(&self) -> Option<&str>
The OAuth token for a third-party source control system for an Amplify app. The OAuth token is used to create a webhook and a read-only deploy key using SSH cloning. The OAuth token is not stored.
Use oauthToken for repository providers other than GitHub, such as Bitbucket or CodeCommit.
To authorize access to GitHub as your repository provider, use accessToken.
You must specify either oauthToken or accessToken when you update an app.
Existing Amplify apps deployed from a GitHub repository using OAuth continue to work with CI/CD. However, we strongly recommend that you migrate these apps to use the GitHub App. For more information, see Migrating an existing OAuth app to the Amplify GitHub App in the Amplify User Guide .
sourcepub fn access_token(&self) -> Option<&str>
pub fn access_token(&self) -> Option<&str>
The personal access token for a GitHub repository for an Amplify app. The personal access token is used to authorize access to a GitHub repository using the Amplify GitHub App. The token is not stored.
Use accessToken for GitHub repositories only. To authorize access to a repository provider such as Bitbucket or CodeCommit, use oauthToken.
You must specify either accessToken or oauthToken when you update an app.
Existing Amplify apps deployed from a GitHub repository using OAuth continue to work with CI/CD. However, we strongly recommend that you migrate these apps to use the GitHub App. For more information, see Migrating an existing OAuth app to the Amplify GitHub App in the Amplify User Guide .
Trait Implementations
sourceimpl Clone for UpdateAppInput
impl Clone for UpdateAppInput
sourcefn clone(&self) -> UpdateAppInput
fn clone(&self) -> UpdateAppInput
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more