[−][src]Struct rusoto_lightsail::InstanceEntry
Describes the Amazon Elastic Compute Cloud instance and related resources to be created using the create cloud formation stack
operation.
Fields
availability_zone: String
The Availability Zone for the new Amazon EC2 instance.
instance_type: String
The instance type (e.g., t2.micro
) to use for the new Amazon EC2 instance.
port_info_source: String
The port configuration to use for the new Amazon EC2 instance.
The following configuration options are available:
-
DEFAULT — Use the default firewall settings from the image.
-
INSTANCE — Use the firewall settings from the source Lightsail instance.
-
NONE — Default to Amazon EC2.
-
CLOSED — All ports closed.
source_name: String
The name of the export snapshot record, which contains the exported Lightsail instance snapshot that will be used as the source of the new Amazon EC2 instance.
Use the get export snapshot records
operation to get a list of export snapshot records that you can use to create a CloudFormation stack.
user_data: Option<String>
A launch script you can create that configures a server with additional user data. For example, you might want to run apt-get -y update
.
Depending on the machine image you choose, the command to get software on your instance varies. Amazon Linux and CentOS use yum
, Debian and Ubuntu use apt-get
, and FreeBSD uses pkg
.
Trait Implementations
impl PartialEq<InstanceEntry> for InstanceEntry
[src]
fn eq(&self, other: &InstanceEntry) -> bool
[src]
fn ne(&self, other: &InstanceEntry) -> bool
[src]
impl Default for InstanceEntry
[src]
fn default() -> InstanceEntry
[src]
impl Clone for InstanceEntry
[src]
fn clone(&self) -> InstanceEntry
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for InstanceEntry
[src]
impl Serialize for InstanceEntry
[src]
Auto Trait Implementations
impl Send for InstanceEntry
impl Sync for InstanceEntry
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self