amazonka-lightsail-2.0: Amazon Lightsail SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.Lightsail.GetContainerServiceDeployments

Description

Returns the deployments for your Amazon Lightsail container service

A deployment specifies the settings, such as the ports and launch command, of containers that are deployed to your container service.

The deployments are ordered by version in ascending order. The newest version is listed at the top of the response.

A set number of deployments are kept before the oldest one is replaced with the newest one. For more information, see Amazon Lightsail endpoints and quotas in the Amazon Web Services General Reference.

Synopsis

Creating a Request

data GetContainerServiceDeployments Source #

See: newGetContainerServiceDeployments smart constructor.

Constructors

GetContainerServiceDeployments' 

Fields

  • serviceName :: Text

    The name of the container service for which to return deployments.

Instances

Instances details
ToJSON GetContainerServiceDeployments Source # 
Instance details

Defined in Amazonka.Lightsail.GetContainerServiceDeployments

ToHeaders GetContainerServiceDeployments Source # 
Instance details

Defined in Amazonka.Lightsail.GetContainerServiceDeployments

ToPath GetContainerServiceDeployments Source # 
Instance details

Defined in Amazonka.Lightsail.GetContainerServiceDeployments

ToQuery GetContainerServiceDeployments Source # 
Instance details

Defined in Amazonka.Lightsail.GetContainerServiceDeployments

AWSRequest GetContainerServiceDeployments Source # 
Instance details

Defined in Amazonka.Lightsail.GetContainerServiceDeployments

Generic GetContainerServiceDeployments Source # 
Instance details

Defined in Amazonka.Lightsail.GetContainerServiceDeployments

Associated Types

type Rep GetContainerServiceDeployments :: Type -> Type #

Read GetContainerServiceDeployments Source # 
Instance details

Defined in Amazonka.Lightsail.GetContainerServiceDeployments

Show GetContainerServiceDeployments Source # 
Instance details

Defined in Amazonka.Lightsail.GetContainerServiceDeployments

NFData GetContainerServiceDeployments Source # 
Instance details

Defined in Amazonka.Lightsail.GetContainerServiceDeployments

Eq GetContainerServiceDeployments Source # 
Instance details

Defined in Amazonka.Lightsail.GetContainerServiceDeployments

Hashable GetContainerServiceDeployments Source # 
Instance details

Defined in Amazonka.Lightsail.GetContainerServiceDeployments

type AWSResponse GetContainerServiceDeployments Source # 
Instance details

Defined in Amazonka.Lightsail.GetContainerServiceDeployments

type Rep GetContainerServiceDeployments Source # 
Instance details

Defined in Amazonka.Lightsail.GetContainerServiceDeployments

type Rep GetContainerServiceDeployments = D1 ('MetaData "GetContainerServiceDeployments" "Amazonka.Lightsail.GetContainerServiceDeployments" "amazonka-lightsail-2.0-77hvsZhtZFxFduYae8QaN0" 'False) (C1 ('MetaCons "GetContainerServiceDeployments'" 'PrefixI 'True) (S1 ('MetaSel ('Just "serviceName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newGetContainerServiceDeployments Source #

Create a value of GetContainerServiceDeployments with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

GetContainerServiceDeployments, getContainerServiceDeployments_serviceName - The name of the container service for which to return deployments.

Request Lenses

getContainerServiceDeployments_serviceName :: Lens' GetContainerServiceDeployments Text Source #

The name of the container service for which to return deployments.

Destructuring the Response

data GetContainerServiceDeploymentsResponse Source #

Constructors

GetContainerServiceDeploymentsResponse' 

Fields

Instances

Instances details
Generic GetContainerServiceDeploymentsResponse Source # 
Instance details

Defined in Amazonka.Lightsail.GetContainerServiceDeployments

Read GetContainerServiceDeploymentsResponse Source # 
Instance details

Defined in Amazonka.Lightsail.GetContainerServiceDeployments

Show GetContainerServiceDeploymentsResponse Source # 
Instance details

Defined in Amazonka.Lightsail.GetContainerServiceDeployments

NFData GetContainerServiceDeploymentsResponse Source # 
Instance details

Defined in Amazonka.Lightsail.GetContainerServiceDeployments

Eq GetContainerServiceDeploymentsResponse Source # 
Instance details

Defined in Amazonka.Lightsail.GetContainerServiceDeployments

type Rep GetContainerServiceDeploymentsResponse Source # 
Instance details

Defined in Amazonka.Lightsail.GetContainerServiceDeployments

type Rep GetContainerServiceDeploymentsResponse = D1 ('MetaData "GetContainerServiceDeploymentsResponse" "Amazonka.Lightsail.GetContainerServiceDeployments" "amazonka-lightsail-2.0-77hvsZhtZFxFduYae8QaN0" 'False) (C1 ('MetaCons "GetContainerServiceDeploymentsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "deployments") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [ContainerServiceDeployment])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newGetContainerServiceDeploymentsResponse Source #

Create a value of GetContainerServiceDeploymentsResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:deployments:GetContainerServiceDeploymentsResponse', getContainerServiceDeploymentsResponse_deployments - An array of objects that describe deployments for a container service.

$sel:httpStatus:GetContainerServiceDeploymentsResponse', getContainerServiceDeploymentsResponse_httpStatus - The response's http status code.

Response Lenses