[][src]Struct rusoto_elasticbeanstalk::ElasticBeanstalkClient

pub struct ElasticBeanstalkClient { /* fields omitted */ }

A client for the Elastic Beanstalk API.

Methods

impl ElasticBeanstalkClient[src]

pub fn new(region: Region) -> ElasticBeanstalkClient[src]

Creates a client backed by the default tokio event loop.

The client will use the default credentials provider and tls client.

pub fn new_with<P, D>(
    request_dispatcher: D,
    credentials_provider: P,
    region: Region
) -> ElasticBeanstalkClient where
    P: ProvideAwsCredentials + Send + Sync + 'static,
    D: DispatchSignedRequest + Send + Sync + 'static, 
[src]

pub fn new_with_client(client: Client, region: Region) -> ElasticBeanstalkClient[src]

Trait Implementations

impl Clone for ElasticBeanstalkClient[src]

impl ElasticBeanstalk for ElasticBeanstalkClient[src]

fn abort_environment_update<'life0, 'async_trait>(
    &'life0 self,
    input: AbortEnvironmentUpdateMessage
) -> Pin<Box<dyn Future<Output = Result<(), RusotoError<AbortEnvironmentUpdateError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Cancels in-progress environment configuration update or application version deployment.

fn apply_environment_managed_action<'life0, 'async_trait>(
    &'life0 self,
    input: ApplyEnvironmentManagedActionRequest
) -> Pin<Box<dyn Future<Output = Result<ApplyEnvironmentManagedActionResult, RusotoError<ApplyEnvironmentManagedActionError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Applies a scheduled managed action immediately. A managed action can be applied only if its status is Scheduled. Get the status and action ID of a managed action with DescribeEnvironmentManagedActions.

fn check_dns_availability<'life0, 'async_trait>(
    &'life0 self,
    input: CheckDNSAvailabilityMessage
) -> Pin<Box<dyn Future<Output = Result<CheckDNSAvailabilityResultMessage, RusotoError<CheckDNSAvailabilityError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Checks if the specified CNAME is available.

fn compose_environments<'life0, 'async_trait>(
    &'life0 self,
    input: ComposeEnvironmentsMessage
) -> Pin<Box<dyn Future<Output = Result<EnvironmentDescriptionsMessage, RusotoError<ComposeEnvironmentsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Create or update a group of environments that each run a separate component of a single application. Takes a list of version labels that specify application source bundles for each of the environments to create or update. The name of each environment and other required information must be included in the source bundles in an environment manifest named env.yaml. See Compose Environments for details.

fn create_application<'life0, 'async_trait>(
    &'life0 self,
    input: CreateApplicationMessage
) -> Pin<Box<dyn Future<Output = Result<ApplicationDescriptionMessage, RusotoError<CreateApplicationError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Creates an application that has one configuration template named default and no application versions.

fn create_application_version<'life0, 'async_trait>(
    &'life0 self,
    input: CreateApplicationVersionMessage
) -> Pin<Box<dyn Future<Output = Result<ApplicationVersionDescriptionMessage, RusotoError<CreateApplicationVersionError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Creates an application version for the specified application. You can create an application version from a source bundle in Amazon S3, a commit in AWS CodeCommit, or the output of an AWS CodeBuild build as follows:

Specify a commit in an AWS CodeCommit repository with SourceBuildInformation.

Specify a build in an AWS CodeBuild with SourceBuildInformation and BuildConfiguration.

Specify a source bundle in S3 with SourceBundle

Omit both SourceBuildInformation and SourceBundle to use the default sample application.

Once you create an application version with a specified Amazon S3 bucket and key location, you cannot change that Amazon S3 location. If you change the Amazon S3 location, you receive an exception when you attempt to launch an environment from the application version.

fn create_configuration_template<'life0, 'async_trait>(
    &'life0 self,
    input: CreateConfigurationTemplateMessage
) -> Pin<Box<dyn Future<Output = Result<ConfigurationSettingsDescription, RusotoError<CreateConfigurationTemplateError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Creates a configuration template. Templates are associated with a specific application and are used to deploy different versions of the application with the same configuration settings.

Templates aren't associated with any environment. The EnvironmentName response element is always null.

Related Topics

fn create_environment<'life0, 'async_trait>(
    &'life0 self,
    input: CreateEnvironmentMessage
) -> Pin<Box<dyn Future<Output = Result<EnvironmentDescription, RusotoError<CreateEnvironmentError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Launches an environment for the specified application using the specified configuration.

fn create_platform_version<'life0, 'async_trait>(
    &'life0 self,
    input: CreatePlatformVersionRequest
) -> Pin<Box<dyn Future<Output = Result<CreatePlatformVersionResult, RusotoError<CreatePlatformVersionError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Create a new version of your custom platform.

fn create_storage_location<'life0, 'async_trait>(
    &'life0 self
) -> Pin<Box<dyn Future<Output = Result<CreateStorageLocationResultMessage, RusotoError<CreateStorageLocationError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Creates a bucket in Amazon S3 to store application versions, logs, and other files used by Elastic Beanstalk environments. The Elastic Beanstalk console and EB CLI call this API the first time you create an environment in a region. If the storage location already exists, CreateStorageLocation still returns the bucket name but does not create a new bucket.

fn delete_application<'life0, 'async_trait>(
    &'life0 self,
    input: DeleteApplicationMessage
) -> Pin<Box<dyn Future<Output = Result<(), RusotoError<DeleteApplicationError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Deletes the specified application along with all associated versions and configurations. The application versions will not be deleted from your Amazon S3 bucket.

You cannot delete an application that has a running environment.

fn delete_application_version<'life0, 'async_trait>(
    &'life0 self,
    input: DeleteApplicationVersionMessage
) -> Pin<Box<dyn Future<Output = Result<(), RusotoError<DeleteApplicationVersionError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Deletes the specified version from the specified application.

You cannot delete an application version that is associated with a running environment.

fn delete_configuration_template<'life0, 'async_trait>(
    &'life0 self,
    input: DeleteConfigurationTemplateMessage
) -> Pin<Box<dyn Future<Output = Result<(), RusotoError<DeleteConfigurationTemplateError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Deletes the specified configuration template.

When you launch an environment using a configuration template, the environment gets a copy of the template. You can delete or modify the environment's copy of the template without affecting the running environment.

fn delete_environment_configuration<'life0, 'async_trait>(
    &'life0 self,
    input: DeleteEnvironmentConfigurationMessage
) -> Pin<Box<dyn Future<Output = Result<(), RusotoError<DeleteEnvironmentConfigurationError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Deletes the draft configuration associated with the running environment.

Updating a running environment with any configuration changes creates a draft configuration set. You can get the draft configuration using DescribeConfigurationSettings while the update is in progress or if the update fails. The DeploymentStatus for the draft configuration indicates whether the deployment is in process or has failed. The draft configuration remains in existence until it is deleted with this action.

fn delete_platform_version<'life0, 'async_trait>(
    &'life0 self,
    input: DeletePlatformVersionRequest
) -> Pin<Box<dyn Future<Output = Result<DeletePlatformVersionResult, RusotoError<DeletePlatformVersionError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Deletes the specified version of a custom platform.

fn describe_account_attributes<'life0, 'async_trait>(
    &'life0 self
) -> Pin<Box<dyn Future<Output = Result<DescribeAccountAttributesResult, RusotoError<DescribeAccountAttributesError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns attributes related to AWS Elastic Beanstalk that are associated with the calling AWS account.

The result currently has one set of attributes—resource quotas.

fn describe_application_versions<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeApplicationVersionsMessage
) -> Pin<Box<dyn Future<Output = Result<ApplicationVersionDescriptionsMessage, RusotoError<DescribeApplicationVersionsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Retrieve a list of application versions.

fn describe_applications<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeApplicationsMessage
) -> Pin<Box<dyn Future<Output = Result<ApplicationDescriptionsMessage, RusotoError<DescribeApplicationsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns the descriptions of existing applications.

fn describe_configuration_options<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeConfigurationOptionsMessage
) -> Pin<Box<dyn Future<Output = Result<ConfigurationOptionsDescription, RusotoError<DescribeConfigurationOptionsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Describes the configuration options that are used in a particular configuration template or environment, or that a specified solution stack defines. The description includes the values the options, their default values, and an indication of the required action on a running environment if an option value is changed.

fn describe_configuration_settings<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeConfigurationSettingsMessage
) -> Pin<Box<dyn Future<Output = Result<ConfigurationSettingsDescriptions, RusotoError<DescribeConfigurationSettingsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns a description of the settings for the specified configuration set, that is, either a configuration template or the configuration set associated with a running environment.

When describing the settings for the configuration set associated with a running environment, it is possible to receive two sets of setting descriptions. One is the deployed configuration set, and the other is a draft configuration of an environment that is either in the process of deployment or that failed to deploy.

Related Topics

fn describe_environment_health<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeEnvironmentHealthRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeEnvironmentHealthResult, RusotoError<DescribeEnvironmentHealthError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns information about the overall health of the specified environment. The DescribeEnvironmentHealth operation is only available with AWS Elastic Beanstalk Enhanced Health.

fn describe_environment_managed_action_history<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeEnvironmentManagedActionHistoryRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeEnvironmentManagedActionHistoryResult, RusotoError<DescribeEnvironmentManagedActionHistoryError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Lists an environment's completed and failed managed actions.

fn describe_environment_managed_actions<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeEnvironmentManagedActionsRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeEnvironmentManagedActionsResult, RusotoError<DescribeEnvironmentManagedActionsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Lists an environment's upcoming and in-progress managed actions.

fn describe_environment_resources<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeEnvironmentResourcesMessage
) -> Pin<Box<dyn Future<Output = Result<EnvironmentResourceDescriptionsMessage, RusotoError<DescribeEnvironmentResourcesError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns AWS resources for this environment.

fn describe_environments<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeEnvironmentsMessage
) -> Pin<Box<dyn Future<Output = Result<EnvironmentDescriptionsMessage, RusotoError<DescribeEnvironmentsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns descriptions for existing environments.

fn describe_events<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeEventsMessage
) -> Pin<Box<dyn Future<Output = Result<EventDescriptionsMessage, RusotoError<DescribeEventsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns list of event descriptions matching criteria up to the last 6 weeks.

This action returns the most recent 1,000 events from the specified NextToken.

fn describe_instances_health<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeInstancesHealthRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeInstancesHealthResult, RusotoError<DescribeInstancesHealthError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Retrieves detailed information about the health of instances in your AWS Elastic Beanstalk. This operation requires enhanced health reporting.

fn describe_platform_version<'life0, 'async_trait>(
    &'life0 self,
    input: DescribePlatformVersionRequest
) -> Pin<Box<dyn Future<Output = Result<DescribePlatformVersionResult, RusotoError<DescribePlatformVersionError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Describes the version of the platform.

fn list_available_solution_stacks<'life0, 'async_trait>(
    &'life0 self
) -> Pin<Box<dyn Future<Output = Result<ListAvailableSolutionStacksResultMessage, RusotoError<ListAvailableSolutionStacksError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns a list of the available solution stack names, with the public version first and then in reverse chronological order.

fn list_platform_versions<'life0, 'async_trait>(
    &'life0 self,
    input: ListPlatformVersionsRequest
) -> Pin<Box<dyn Future<Output = Result<ListPlatformVersionsResult, RusotoError<ListPlatformVersionsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Lists the available platforms.

fn list_tags_for_resource<'life0, 'async_trait>(
    &'life0 self,
    input: ListTagsForResourceMessage
) -> Pin<Box<dyn Future<Output = Result<ResourceTagsDescriptionMessage, RusotoError<ListTagsForResourceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns the tags applied to an AWS Elastic Beanstalk resource. The response contains a list of tag key-value pairs.

Currently, Elastic Beanstalk only supports tagging of Elastic Beanstalk environments. For details about environment tagging, see Tagging Resources in Your Elastic Beanstalk Environment.

fn rebuild_environment<'life0, 'async_trait>(
    &'life0 self,
    input: RebuildEnvironmentMessage
) -> Pin<Box<dyn Future<Output = Result<(), RusotoError<RebuildEnvironmentError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Deletes and recreates all of the AWS resources (for example: the Auto Scaling group, load balancer, etc.) for a specified environment and forces a restart.

fn request_environment_info<'life0, 'async_trait>(
    &'life0 self,
    input: RequestEnvironmentInfoMessage
) -> Pin<Box<dyn Future<Output = Result<(), RusotoError<RequestEnvironmentInfoError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Initiates a request to compile the specified type of information of the deployed environment.

Setting the InfoType to tail compiles the last lines from the application server log files of every Amazon EC2 instance in your environment.

Setting the InfoType to bundle compresses the application server log files for every Amazon EC2 instance into a .zip file. Legacy and .NET containers do not support bundle logs.

Use RetrieveEnvironmentInfo to obtain the set of logs.

Related Topics

fn restart_app_server<'life0, 'async_trait>(
    &'life0 self,
    input: RestartAppServerMessage
) -> Pin<Box<dyn Future<Output = Result<(), RusotoError<RestartAppServerError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Causes the environment to restart the application container server running on each Amazon EC2 instance.

fn retrieve_environment_info<'life0, 'async_trait>(
    &'life0 self,
    input: RetrieveEnvironmentInfoMessage
) -> Pin<Box<dyn Future<Output = Result<RetrieveEnvironmentInfoResultMessage, RusotoError<RetrieveEnvironmentInfoError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Retrieves the compiled information from a RequestEnvironmentInfo request.

Related Topics

fn swap_environment_cnam_es<'life0, 'async_trait>(
    &'life0 self,
    input: SwapEnvironmentCNAMEsMessage
) -> Pin<Box<dyn Future<Output = Result<(), RusotoError<SwapEnvironmentCNAMEsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Swaps the CNAMEs of two environments.

fn terminate_environment<'life0, 'async_trait>(
    &'life0 self,
    input: TerminateEnvironmentMessage
) -> Pin<Box<dyn Future<Output = Result<EnvironmentDescription, RusotoError<TerminateEnvironmentError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Terminates the specified environment.

fn update_application<'life0, 'async_trait>(
    &'life0 self,
    input: UpdateApplicationMessage
) -> Pin<Box<dyn Future<Output = Result<ApplicationDescriptionMessage, RusotoError<UpdateApplicationError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Updates the specified application to have the specified properties.

If a property (for example, description) is not provided, the value remains unchanged. To clear these properties, specify an empty string.

fn update_application_resource_lifecycle<'life0, 'async_trait>(
    &'life0 self,
    input: UpdateApplicationResourceLifecycleMessage
) -> Pin<Box<dyn Future<Output = Result<ApplicationResourceLifecycleDescriptionMessage, RusotoError<UpdateApplicationResourceLifecycleError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Modifies lifecycle settings for an application.

fn update_application_version<'life0, 'async_trait>(
    &'life0 self,
    input: UpdateApplicationVersionMessage
) -> Pin<Box<dyn Future<Output = Result<ApplicationVersionDescriptionMessage, RusotoError<UpdateApplicationVersionError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Updates the specified application version to have the specified properties.

If a property (for example, description) is not provided, the value remains unchanged. To clear properties, specify an empty string.

fn update_configuration_template<'life0, 'async_trait>(
    &'life0 self,
    input: UpdateConfigurationTemplateMessage
) -> Pin<Box<dyn Future<Output = Result<ConfigurationSettingsDescription, RusotoError<UpdateConfigurationTemplateError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Updates the specified configuration template to have the specified properties or configuration option values.

If a property (for example, ApplicationName) is not provided, its value remains unchanged. To clear such properties, specify an empty string.

Related Topics

fn update_environment<'life0, 'async_trait>(
    &'life0 self,
    input: UpdateEnvironmentMessage
) -> Pin<Box<dyn Future<Output = Result<EnvironmentDescription, RusotoError<UpdateEnvironmentError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Updates the environment description, deploys a new application version, updates the configuration settings to an entirely new configuration template, or updates select configuration option values in the running environment.

Attempting to update both the release and configuration is not allowed and AWS Elastic Beanstalk returns an InvalidParameterCombination error.

When updating the configuration settings to a new template or individual settings, a draft configuration is created and DescribeConfigurationSettings for this environment returns two setting descriptions with different DeploymentStatus values.

fn update_tags_for_resource<'life0, 'async_trait>(
    &'life0 self,
    input: UpdateTagsForResourceMessage
) -> Pin<Box<dyn Future<Output = Result<(), RusotoError<UpdateTagsForResourceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Update the list of tags applied to an AWS Elastic Beanstalk resource. Two lists can be passed: TagsToAdd for tags to add or update, and TagsToRemove.

Currently, Elastic Beanstalk only supports tagging of Elastic Beanstalk environments. For details about environment tagging, see Tagging Resources in Your Elastic Beanstalk Environment.

If you create a custom IAM user policy to control permission to this operation, specify one of the following two virtual actions (or both) instead of the API operation name:

elasticbeanstalk:AddTags

Controls permission to call UpdateTagsForResource and pass a list of tags to add in the TagsToAdd parameter.

elasticbeanstalk:RemoveTags

Controls permission to call UpdateTagsForResource and pass a list of tag keys to remove in the TagsToRemove parameter.

For details about creating a custom user policy, see Creating a Custom User Policy.

fn validate_configuration_settings<'life0, 'async_trait>(
    &'life0 self,
    input: ValidateConfigurationSettingsMessage
) -> Pin<Box<dyn Future<Output = Result<ConfigurationSettingsValidationMessages, RusotoError<ValidateConfigurationSettingsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Takes a set of configuration settings and either a configuration template or environment, and determines whether those values are valid.

This action returns a list of messages indicating any errors or warnings associated with the selection of option values.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.