pub struct Builder { /* private fields */ }
Expand description
A builder for CreatePlatformVersionInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn platform_name(self, input: impl Into<String>) -> Self
pub fn platform_name(self, input: impl Into<String>) -> Self
The name of your custom platform.
sourcepub fn set_platform_name(self, input: Option<String>) -> Self
pub fn set_platform_name(self, input: Option<String>) -> Self
The name of your custom platform.
sourcepub fn platform_version(self, input: impl Into<String>) -> Self
pub fn platform_version(self, input: impl Into<String>) -> Self
The number, such as 1.0.2, for the new platform version.
sourcepub fn set_platform_version(self, input: Option<String>) -> Self
pub fn set_platform_version(self, input: Option<String>) -> Self
The number, such as 1.0.2, for the new platform version.
sourcepub fn platform_definition_bundle(self, input: S3Location) -> Self
pub fn platform_definition_bundle(self, input: S3Location) -> Self
The location of the platform definition archive in Amazon S3.
sourcepub fn set_platform_definition_bundle(self, input: Option<S3Location>) -> Self
pub fn set_platform_definition_bundle(self, input: Option<S3Location>) -> Self
The location of the platform definition archive in Amazon S3.
sourcepub fn environment_name(self, input: impl Into<String>) -> Self
pub fn environment_name(self, input: impl Into<String>) -> Self
The name of the builder environment.
sourcepub fn set_environment_name(self, input: Option<String>) -> Self
pub fn set_environment_name(self, input: Option<String>) -> Self
The name of the builder environment.
sourcepub fn option_settings(self, input: ConfigurationOptionSetting) -> Self
pub fn option_settings(self, input: ConfigurationOptionSetting) -> Self
Appends an item to option_settings
.
To override the contents of this collection use set_option_settings
.
The configuration option settings to apply to the builder environment.
sourcepub fn set_option_settings(
self,
input: Option<Vec<ConfigurationOptionSetting>>
) -> Self
pub fn set_option_settings(
self,
input: Option<Vec<ConfigurationOptionSetting>>
) -> Self
The configuration option settings to apply to the builder environment.
Appends an item to tags
.
To override the contents of this collection use set_tags
.
Specifies the tags applied to the new platform version.
Elastic Beanstalk applies these tags only to the platform version. Environments that you create using the platform version don't inherit the tags.
Specifies the tags applied to the new platform version.
Elastic Beanstalk applies these tags only to the platform version. Environments that you create using the platform version don't inherit the tags.
sourcepub fn build(self) -> Result<CreatePlatformVersionInput, BuildError>
pub fn build(self) -> Result<CreatePlatformVersionInput, BuildError>
Consumes the builder and constructs a CreatePlatformVersionInput
.