Struct aws_sdk_cloud9::input::CreateEnvironmentEc2Input
source · [−]#[non_exhaustive]pub struct CreateEnvironmentEc2Input { /* private fields */ }
Implementations
sourceimpl CreateEnvironmentEc2Input
impl CreateEnvironmentEc2Input
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateEnvironmentEC2, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateEnvironmentEC2, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateEnvironmentEC2
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateEnvironmentEc2Input
.
sourceimpl CreateEnvironmentEc2Input
impl CreateEnvironmentEc2Input
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
The name of the environment to create.
This name is visible to other IAM users in the same Amazon Web Services account.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the environment to create.
sourcepub fn client_request_token(&self) -> Option<&str>
pub fn client_request_token(&self) -> Option<&str>
A unique, case-sensitive string that helps Cloud9 to ensure this operation completes no more than one time.
For more information, see Client Tokens in the Amazon EC2 API Reference.
sourcepub fn instance_type(&self) -> Option<&str>
pub fn instance_type(&self) -> Option<&str>
The type of instance to connect to the environment (for example, t2.micro
).
sourcepub fn subnet_id(&self) -> Option<&str>
pub fn subnet_id(&self) -> Option<&str>
The ID of the subnet in Amazon VPC that Cloud9 will use to communicate with the Amazon EC2 instance.
sourcepub fn image_id(&self) -> Option<&str>
pub fn image_id(&self) -> Option<&str>
The identifier for the Amazon Machine Image (AMI) that's used to create the EC2 instance. To choose an AMI for the instance, you must specify a valid AMI alias or a valid Amazon EC2 Systems Manager (SSM) path.
The default AMI is used if the parameter isn't explicitly assigned a value in the request. Because Amazon Linux AMI has ended standard support as of December 31, 2020, we recommend you choose Amazon Linux 2, which includes long term support through 2023.
AMI aliases
-
Amazon Linux (default):
amazonlinux-1-x86_64
-
Amazon Linux 2:
amazonlinux-2-x86_64
-
Ubuntu 18.04:
ubuntu-18.04-x86_64
SSM paths
-
Amazon Linux (default):
resolve:ssm:/aws/service/cloud9/amis/amazonlinux-1-x86_64
-
Amazon Linux 2:
resolve:ssm:/aws/service/cloud9/amis/amazonlinux-2-x86_64
-
Ubuntu 18.04:
resolve:ssm:/aws/service/cloud9/amis/ubuntu-18.04-x86_64
sourcepub fn automatic_stop_time_minutes(&self) -> Option<i32>
pub fn automatic_stop_time_minutes(&self) -> Option<i32>
The number of minutes until the running instance is shut down after the environment has last been used.
sourcepub fn owner_arn(&self) -> Option<&str>
pub fn owner_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the environment owner. This ARN can be the ARN of any IAM principal. If this value is not specified, the ARN defaults to this environment's creator.
An array of key-value pairs that will be associated with the new Cloud9 development environment.
sourcepub fn connection_type(&self) -> Option<&ConnectionType>
pub fn connection_type(&self) -> Option<&ConnectionType>
The connection type used for connecting to an Amazon EC2 environment. Valid values are CONNECT_SSH
(default) and CONNECT_SSM
(connected through Amazon EC2 Systems Manager).
For more information, see Accessing no-ingress EC2 instances with Amazon EC2 Systems Manager in the Cloud9 User Guide.
Trait Implementations
sourceimpl Clone for CreateEnvironmentEc2Input
impl Clone for CreateEnvironmentEc2Input
sourcefn clone(&self) -> CreateEnvironmentEc2Input
fn clone(&self) -> CreateEnvironmentEc2Input
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more