Class: Aws::ElasticBeanstalk::Types::DeleteApplicationVersionMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticBeanstalk::Types::DeleteApplicationVersionMessage
- Defined in:
- gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb
Overview
Note:
When making an API call, you may pass DeleteApplicationVersionMessage data as a hash:
{
application_name: "ApplicationName", # required
version_label: "VersionLabel", # required
delete_source_bundle: false,
}
Request to delete an application version.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#application_name ⇒ String
The name of the application to which the version belongs.
-
#delete_source_bundle ⇒ Boolean
Set to
true
to delete the source bundle from your storage bucket. -
#version_label ⇒ String
The label of the version to delete.
Instance Attribute Details
#application_name ⇒ String
The name of the application to which the version belongs.
1712 1713 1714 1715 1716 1717 1718 |
# File 'gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb', line 1712 class DeleteApplicationVersionMessage < Struct.new( :application_name, :version_label, :delete_source_bundle) SENSITIVE = [] include Aws::Structure end |
#delete_source_bundle ⇒ Boolean
Set to true
to delete the source bundle from your storage bucket.
Otherwise, the application version is deleted only from Elastic
Beanstalk and the source bundle remains in Amazon S3.
1712 1713 1714 1715 1716 1717 1718 |
# File 'gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb', line 1712 class DeleteApplicationVersionMessage < Struct.new( :application_name, :version_label, :delete_source_bundle) SENSITIVE = [] include Aws::Structure end |
#version_label ⇒ String
The label of the version to delete.
1712 1713 1714 1715 1716 1717 1718 |
# File 'gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb', line 1712 class DeleteApplicationVersionMessage < Struct.new( :application_name, :version_label, :delete_source_bundle) SENSITIVE = [] include Aws::Structure end |