Struct aws_sdk_opsworks::client::fluent_builders::CreateApp
source · [−]pub struct CreateApp { /* private fields */ }
Expand description
Fluent builder constructing a request to CreateApp
.
Creates an app for a specified stack. For more information, see Creating Apps.
Required Permissions: To use this action, an IAM user must have a Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see Managing User Permissions.
Implementations
sourceimpl CreateApp
impl CreateApp
sourcepub async fn send(self) -> Result<CreateAppOutput, SdkError<CreateAppError>>
pub async fn send(self) -> Result<CreateAppOutput, SdkError<CreateAppError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn set_stack_id(self, input: Option<String>) -> Self
pub fn set_stack_id(self, input: Option<String>) -> Self
The stack ID.
sourcepub fn set_shortname(self, input: Option<String>) -> Self
pub fn set_shortname(self, input: Option<String>) -> Self
The app's short name.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A description of the app.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A description of the app.
sourcepub fn data_sources(self, input: DataSource) -> Self
pub fn data_sources(self, input: DataSource) -> Self
Appends an item to DataSources
.
To override the contents of this collection use set_data_sources
.
The app's data source.
sourcepub fn set_data_sources(self, input: Option<Vec<DataSource>>) -> Self
pub fn set_data_sources(self, input: Option<Vec<DataSource>>) -> Self
The app's data source.
sourcepub fn type(self, input: AppType) -> Self
pub fn type(self, input: AppType) -> Self
The app type. Each supported type is associated with a particular layer. For example, PHP applications are associated with a PHP layer. AWS OpsWorks Stacks deploys an application to those instances that are members of the corresponding layer. If your app isn't one of the standard types, or you prefer to implement your own Deploy recipes, specify other
.
sourcepub fn set_type(self, input: Option<AppType>) -> Self
pub fn set_type(self, input: Option<AppType>) -> Self
The app type. Each supported type is associated with a particular layer. For example, PHP applications are associated with a PHP layer. AWS OpsWorks Stacks deploys an application to those instances that are members of the corresponding layer. If your app isn't one of the standard types, or you prefer to implement your own Deploy recipes, specify other
.
sourcepub fn app_source(self, input: Source) -> Self
pub fn app_source(self, input: Source) -> Self
A Source
object that specifies the app repository.
sourcepub fn set_app_source(self, input: Option<Source>) -> Self
pub fn set_app_source(self, input: Option<Source>) -> Self
A Source
object that specifies the app repository.
sourcepub fn domains(self, input: impl Into<String>) -> Self
pub fn domains(self, input: impl Into<String>) -> Self
Appends an item to Domains
.
To override the contents of this collection use set_domains
.
The app virtual host settings, with multiple domains separated by commas. For example: 'www.example.com, example.com'
sourcepub fn set_domains(self, input: Option<Vec<String>>) -> Self
pub fn set_domains(self, input: Option<Vec<String>>) -> Self
The app virtual host settings, with multiple domains separated by commas. For example: 'www.example.com, example.com'
sourcepub fn enable_ssl(self, input: bool) -> Self
pub fn enable_ssl(self, input: bool) -> Self
Whether to enable SSL for the app.
sourcepub fn set_enable_ssl(self, input: Option<bool>) -> Self
pub fn set_enable_ssl(self, input: Option<bool>) -> Self
Whether to enable SSL for the app.
sourcepub fn ssl_configuration(self, input: SslConfiguration) -> Self
pub fn ssl_configuration(self, input: SslConfiguration) -> Self
An SslConfiguration
object with the SSL configuration.
sourcepub fn set_ssl_configuration(self, input: Option<SslConfiguration>) -> Self
pub fn set_ssl_configuration(self, input: Option<SslConfiguration>) -> Self
An SslConfiguration
object with the SSL configuration.
sourcepub fn attributes(self, k: AppAttributesKeys, v: impl Into<String>) -> Self
pub fn attributes(self, k: AppAttributesKeys, v: impl Into<String>) -> Self
Adds a key-value pair to Attributes
.
To override the contents of this collection use set_attributes
.
One or more user-defined key/value pairs to be added to the stack attributes.
sourcepub fn set_attributes(
self,
input: Option<HashMap<AppAttributesKeys, String>>
) -> Self
pub fn set_attributes(
self,
input: Option<HashMap<AppAttributesKeys, String>>
) -> Self
One or more user-defined key/value pairs to be added to the stack attributes.
sourcepub fn environment(self, input: EnvironmentVariable) -> Self
pub fn environment(self, input: EnvironmentVariable) -> Self
Appends an item to Environment
.
To override the contents of this collection use set_environment
.
An array of EnvironmentVariable
objects that specify environment variables to be associated with the app. After you deploy the app, these variables are defined on the associated app server instance. For more information, see Environment Variables.
There is no specific limit on the number of environment variables. However, the size of the associated data structure - which includes the variables' names, values, and protected flag values - cannot exceed 20 KB. This limit should accommodate most if not all use cases. Exceeding it will cause an exception with the message, "Environment: is too large (maximum is 20KB)."
If you have specified one or more environment variables, you cannot modify the stack's Chef version.
sourcepub fn set_environment(self, input: Option<Vec<EnvironmentVariable>>) -> Self
pub fn set_environment(self, input: Option<Vec<EnvironmentVariable>>) -> Self
An array of EnvironmentVariable
objects that specify environment variables to be associated with the app. After you deploy the app, these variables are defined on the associated app server instance. For more information, see Environment Variables.
There is no specific limit on the number of environment variables. However, the size of the associated data structure - which includes the variables' names, values, and protected flag values - cannot exceed 20 KB. This limit should accommodate most if not all use cases. Exceeding it will cause an exception with the message, "Environment: is too large (maximum is 20KB)."
If you have specified one or more environment variables, you cannot modify the stack's Chef version.
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for CreateApp
impl Send for CreateApp
impl Sync for CreateApp
impl Unpin for CreateApp
impl !UnwindSafe for CreateApp
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more