[][src]Struct rusoto_lightsail::ContainerService

pub struct ContainerService {
    pub arn: Option<String>,
    pub container_service_name: Option<String>,
    pub created_at: Option<f64>,
    pub current_deployment: Option<ContainerServiceDeployment>,
    pub is_disabled: Option<bool>,
    pub location: Option<ResourceLocation>,
    pub next_deployment: Option<ContainerServiceDeployment>,
    pub power: Option<String>,
    pub power_id: Option<String>,
    pub principal_arn: Option<String>,
    pub private_domain_name: Option<String>,
    pub public_domain_names: Option<HashMap<String, Vec<String>>>,
    pub resource_type: Option<String>,
    pub scale: Option<i64>,
    pub state: Option<String>,
    pub tags: Option<Vec<Tag>>,
    pub url: Option<String>,
}

Describes an Amazon Lightsail container service.

Fields

arn: Option<String>

The Amazon Resource Name (ARN) of the container service.

container_service_name: Option<String>

The name of the container service.

created_at: Option<f64>

The timestamp when the container service was created.

current_deployment: Option<ContainerServiceDeployment>

An object that describes the current container deployment of the container service.

is_disabled: Option<bool>

A Boolean value indicating whether the container service is disabled.

location: Option<ResourceLocation>

An object that describes the location of the container service, such as the AWS Region and Availability Zone.

next_deployment: Option<ContainerServiceDeployment>

An object that describes the next deployment of the container service.

This value is null when there is no deployment in a pending state.

power: Option<String>

The power specification of the container service.

The power specifies the amount of RAM, the number of vCPUs, and the base price of the container service.

power_id: Option<String>

The ID of the power of the container service.

principal_arn: Option<String>

The principal ARN of the container service.

The principal ARN can be used to create a trust relationship between your standard AWS account and your Lightsail container service. This allows you to give your service permission to access resources in your standard AWS account.

private_domain_name: Option<String>

The private domain name of the container service.

The private domain name is accessible only by other resources within the default virtual private cloud (VPC) of your Lightsail account.

public_domain_names: Option<HashMap<String, Vec<String>>>

The public domain name of the container service, such as example.com and www.example.com.

You can specify up to four public domain names for a container service. The domain names that you specify are used when you create a deployment with a container configured as the public endpoint of your container service.

If you don't specify public domain names, then you can use the default domain of the container service.

You must create and validate an SSL/TLS certificate before you can use public domain names with your container service. Use the CreateCertificate action to create a certificate for the public domain names you want to use with your container service.

See CreateContainerService or UpdateContainerService for information about how to specify public domain names for your Lightsail container service.

resource_type: Option<String>

The Lightsail resource type of the container service (i.e., ContainerService).

scale: Option<i64>

The scale specification of the container service.

The scale specifies the allocated compute nodes of the container service.

state: Option<String>

The current state of the container service.

The state can be:

  • Pending - The container service is being created.

  • Ready - The container service is created but does not have a container deployment.

  • Disabled - The container service is disabled.

  • Updating - The container service capacity or other setting is being updated.

  • Deploying - The container service is launching a container deployment.

  • Running - The container service is created and it has a container deployment.

tags: Option<Vec<Tag>>

The tag keys and optional values for the resource. For more information about tags in Lightsail, see the Lightsail Dev Guide.

url: Option<String>

The publicly accessible URL of the container service.

If no public endpoint is specified in the currentDeployment, this URL returns a 404 response.

Trait Implementations

impl Clone for ContainerService[src]

impl Debug for ContainerService[src]

impl Default for ContainerService[src]

impl<'de> Deserialize<'de> for ContainerService[src]

impl PartialEq<ContainerService> for ContainerService[src]

impl StructuralPartialEq for ContainerService[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.