#[non_exhaustive]pub struct CreateDevEnvironmentInput { /* private fields */ }
Implementations§
source§impl CreateDevEnvironmentInput
impl CreateDevEnvironmentInput
sourcepub fn space_name(&self) -> Option<&str>
pub fn space_name(&self) -> Option<&str>
The name of the space.
sourcepub fn project_name(&self) -> Option<&str>
pub fn project_name(&self) -> Option<&str>
The name of the project in the space.
sourcepub fn repositories(&self) -> Option<&[RepositoryInput]>
pub fn repositories(&self) -> Option<&[RepositoryInput]>
The source repository that contains the branch to clone into the Dev Environment.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
A user-specified idempotency token. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, the subsequent retries return the result from the original successful request and have no additional effect.
sourcepub fn ides(&self) -> Option<&[IdeConfiguration]>
pub fn ides(&self) -> Option<&[IdeConfiguration]>
Information about the integrated development environment (IDE) configured for a Dev Environment.
An IDE is required to create a Dev Environment. For Dev Environment creation, this field contains configuration information and must be provided.
sourcepub fn instance_type(&self) -> Option<&InstanceType>
pub fn instance_type(&self) -> Option<&InstanceType>
The Amazon EC2 instace type to use for the Dev Environment.
sourcepub fn inactivity_timeout_minutes(&self) -> i32
pub fn inactivity_timeout_minutes(&self) -> i32
The amount of time the Dev Environment will run without any activity detected before stopping, in minutes. Only whole integers are allowed. Dev Environments consume compute minutes when running.
sourcepub fn persistent_storage(&self) -> Option<&PersistentStorageConfiguration>
pub fn persistent_storage(&self) -> Option<&PersistentStorageConfiguration>
Information about the amount of storage allocated to the Dev Environment.
By default, a Dev Environment is configured to have 16GB of persistent storage when created from the Amazon CodeCatalyst console, but there is no default when programmatically creating a Dev Environment. Valid values for persistent storage are based on memory sizes in 16GB increments. Valid values are 16, 32, and 64.
source§impl CreateDevEnvironmentInput
impl CreateDevEnvironmentInput
sourcepub fn builder() -> CreateDevEnvironmentInputBuilder
pub fn builder() -> CreateDevEnvironmentInputBuilder
Creates a new builder-style object to manufacture CreateDevEnvironmentInput
.
source§impl CreateDevEnvironmentInput
impl CreateDevEnvironmentInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateDevEnvironment, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<CreateDevEnvironment, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateDevEnvironment
>
Trait Implementations§
source§impl Clone for CreateDevEnvironmentInput
impl Clone for CreateDevEnvironmentInput
source§fn clone(&self) -> CreateDevEnvironmentInput
fn clone(&self) -> CreateDevEnvironmentInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateDevEnvironmentInput
impl Debug for CreateDevEnvironmentInput
source§impl PartialEq<CreateDevEnvironmentInput> for CreateDevEnvironmentInput
impl PartialEq<CreateDevEnvironmentInput> for CreateDevEnvironmentInput
source§fn eq(&self, other: &CreateDevEnvironmentInput) -> bool
fn eq(&self, other: &CreateDevEnvironmentInput) -> bool
self
and other
values to be equal, and is used
by ==
.