amazonka-proton-2.0: Amazon Proton 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.Proton

Contents

Description

Derived from API version 2020-07-20 of the AWS service descriptions, licensed under Apache 2.0.

This is the Proton Service API Reference. It provides descriptions, syntax and usage examples for each of the actions and data types for the Proton service.

The documentation for each action shows the Query API request parameters and the XML response.

Alternatively, you can use the Amazon Web Services CLI to access an API. For more information, see the Amazon Web Services Command Line Interface User Guide.

The Proton service is a two-pronged automation framework. Administrators create service templates to provide standardized infrastructure and deployment tooling for serverless and container based applications. Developers, in turn, select from the available service templates to automate their application or service deployments.

Because administrators define the infrastructure and tooling that Proton deploys and manages, they need permissions to use all of the listed API operations.

When developers select a specific infrastructure and tooling set, Proton deploys their applications. To monitor their applications that are running on Proton, developers need permissions to the service create, list, update and delete API operations and the service instance list and update API operations.

To learn more about Proton, see the Proton User Guide.

Ensuring Idempotency

When you make a mutating API request, the request typically returns a result before the asynchronous workflows of the operation are complete. Operations might also time out or encounter other server issues before they're complete, even if the request already returned a result. This might make it difficult to determine whether the request succeeded. Moreover, you might need to retry the request multiple times to ensure that the operation completes successfully. However, if the original request and the subsequent retries are successful, the operation occurs multiple times. This means that you might create more resources than you intended.

Idempotency ensures that an API request action completes no more than one time. With an idempotent request, if the original request action completes successfully, any subsequent retries complete successfully without performing any further actions. However, the result might contain updated information, such as the current creation status.

The following lists of APIs are grouped according to methods that ensure idempotency.

Idempotent create APIs with a client token

The API actions in this list support idempotency with the use of a client token. The corresponding Amazon Web Services CLI commands also support idempotency using a client token. A client token is a unique, case-sensitive string of up to 64 ASCII characters. To make an idempotent API request using one of these actions, specify a client token in the request. We recommend that you don't reuse the same client token for other API requests. If you don’t provide a client token for these APIs, a default client token is automatically provided by SDKs.

Given a request action that has succeeded:

If you retry the request using the same client token and the same parameters, the retry succeeds without performing any further actions other than returning the original resource detail data in the response.

If you retry the request using the same client token, but one or more of the parameters are different, the retry throws a ValidationException with an IdempotentParameterMismatch error.

Client tokens expire eight hours after a request is made. If you retry the request with the expired token, a new resource is created.

If the original resource is deleted and you retry the request, a new resource is created.

Idempotent create APIs with a client token:

  • CreateEnvironmentTemplateVersion
  • CreateServiceTemplateVersion
  • CreateEnvironmentAccountConnection

Idempotent create APIs

Given a request action that has succeeded:

If you retry the request with an API from this group, and the original resource hasn't been modified, the retry succeeds without performing any further actions other than returning the original resource detail data in the response.

If the original resource has been modified, the retry throws a ConflictException.

If you retry with different input parameters, the retry throws a ValidationException with an IdempotentParameterMismatch error.

Idempotent create APIs:

  • CreateEnvironmentTemplate
  • CreateServiceTemplate
  • CreateEnvironment
  • CreateService

Idempotent delete APIs

Given a request action that has succeeded:

When you retry the request with an API from this group and the resource was deleted, its metadata is returned in the response.

If you retry and the resource doesn't exist, the response is empty.

In both cases, the retry succeeds.

Idempotent delete APIs:

  • DeleteEnvironmentTemplate
  • DeleteEnvironmentTemplateVersion
  • DeleteServiceTemplate
  • DeleteServiceTemplateVersion
  • DeleteEnvironmentAccountConnection

Asynchronous idempotent delete APIs

Given a request action that has succeeded:

If you retry the request with an API from this group, if the original request delete operation status is DELETE_IN_PROGRESS, the retry returns the resource detail data in the response without performing any further actions.

If the original request delete operation is complete, a retry returns an empty response.

Asynchronous idempotent delete APIs:

  • DeleteEnvironment
  • DeleteService
Synopsis

Service Configuration

defaultService :: Service Source #

API version 2020-07-20 of the Amazon Proton SDK configuration.

Errors

Error matchers are designed for use with the functions provided by Control.Exception.Lens. This allows catching (and rethrowing) service specific errors returned by Proton.

AccessDeniedException

_AccessDeniedException :: AsError a => Fold a ServiceError Source #

There isn't sufficient access for performing this action.

ConflictException

_ConflictException :: AsError a => Fold a ServiceError Source #

The request couldn't be made due to a conflicting operation or resource.

InternalServerException

_InternalServerException :: AsError a => Fold a ServiceError Source #

The request failed to register with the service.

ResourceNotFoundException

_ResourceNotFoundException :: AsError a => Fold a ServiceError Source #

The requested resource wasn't found.

ServiceQuotaExceededException

_ServiceQuotaExceededException :: AsError a => Fold a ServiceError Source #

A quota was exceeded. For more information, see Proton Quotas in the Proton User Guide.

ThrottlingException

_ThrottlingException :: AsError a => Fold a ServiceError Source #

The request was denied due to request throttling.

ValidationException

_ValidationException :: AsError a => Fold a ServiceError Source #

The input is invalid or an out-of-range value was supplied for the input parameter.

Waiters

Waiters poll by repeatedly sending a request until some remote success condition configured by the Wait specification is fulfilled. The Wait specification determines how many attempts should be made, in addition to delay and retry strategies.

ComponentDeleted

newComponentDeleted :: Wait GetComponent Source #

Polls GetComponent every 5 seconds until a successful state is reached. An error is returned after 999 failed checks.

ComponentDeployed

newComponentDeployed :: Wait GetComponent Source #

Polls GetComponent every 5 seconds until a successful state is reached. An error is returned after 999 failed checks.

EnvironmentDeployed

newEnvironmentDeployed :: Wait GetEnvironment Source #

Polls GetEnvironment every 5 seconds until a successful state is reached. An error is returned after 999 failed checks.

EnvironmentTemplateVersionRegistered

newEnvironmentTemplateVersionRegistered :: Wait GetEnvironmentTemplateVersion Source #

Polls GetEnvironmentTemplateVersion every 2 seconds until a successful state is reached. An error is returned after 150 failed checks.

ServiceCreated

newServiceCreated :: Wait GetService Source #

Polls GetService every 5 seconds until a successful state is reached. An error is returned after 999 failed checks.

ServiceDeleted

newServiceDeleted :: Wait GetService Source #

Polls GetService every 5 seconds until a successful state is reached. An error is returned after 999 failed checks.

ServiceInstanceDeployed

newServiceInstanceDeployed :: Wait GetServiceInstance Source #

Polls GetServiceInstance every 5 seconds until a successful state is reached. An error is returned after 999 failed checks.

ServicePipelineDeployed

newServicePipelineDeployed :: Wait GetService Source #

Polls GetService every 10 seconds until a successful state is reached. An error is returned after 360 failed checks.

ServiceTemplateVersionRegistered

newServiceTemplateVersionRegistered :: Wait GetServiceTemplateVersion Source #

Polls GetServiceTemplateVersion every 2 seconds until a successful state is reached. An error is returned after 150 failed checks.

ServiceUpdated

newServiceUpdated :: Wait GetService Source #

Polls GetService every 5 seconds until a successful state is reached. An error is returned after 999 failed checks.

Operations

Some AWS operations return results that are incomplete and require subsequent requests in order to obtain the entire result set. The process of sending subsequent requests to continue where a previous request left off is called pagination. For example, the ListObjects operation of Amazon S3 returns up to 1000 objects at a time, and you must send subsequent requests with the appropriate Marker in order to retrieve the next page of results.

Operations that have an AWSPager instance can transparently perform subsequent requests, correctly setting Markers and other request facets to iterate through the entire result set of a truncated API operation. Operations which support this have an additional note in the documentation.

Many operations have the ability to filter results on the server side. See the individual operation parameters for details.

AcceptEnvironmentAccountConnection

data AcceptEnvironmentAccountConnection Source #

Instances

Instances details
ToJSON AcceptEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.AcceptEnvironmentAccountConnection

ToHeaders AcceptEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.AcceptEnvironmentAccountConnection

ToPath AcceptEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.AcceptEnvironmentAccountConnection

ToQuery AcceptEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.AcceptEnvironmentAccountConnection

AWSRequest AcceptEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.AcceptEnvironmentAccountConnection

Generic AcceptEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.AcceptEnvironmentAccountConnection

Associated Types

type Rep AcceptEnvironmentAccountConnection :: Type -> Type #

Read AcceptEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.AcceptEnvironmentAccountConnection

Show AcceptEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.AcceptEnvironmentAccountConnection

NFData AcceptEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.AcceptEnvironmentAccountConnection

Eq AcceptEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.AcceptEnvironmentAccountConnection

Hashable AcceptEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.AcceptEnvironmentAccountConnection

type AWSResponse AcceptEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.AcceptEnvironmentAccountConnection

type Rep AcceptEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.AcceptEnvironmentAccountConnection

type Rep AcceptEnvironmentAccountConnection = D1 ('MetaData "AcceptEnvironmentAccountConnection" "Amazonka.Proton.AcceptEnvironmentAccountConnection" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "AcceptEnvironmentAccountConnection'" 'PrefixI 'True) (S1 ('MetaSel ('Just "id") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newAcceptEnvironmentAccountConnection Source #

Create a value of AcceptEnvironmentAccountConnection 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:

AcceptEnvironmentAccountConnection, acceptEnvironmentAccountConnection_id - The ID of the environment account connection.

data AcceptEnvironmentAccountConnectionResponse Source #

Instances

Instances details
Generic AcceptEnvironmentAccountConnectionResponse Source # 
Instance details

Defined in Amazonka.Proton.AcceptEnvironmentAccountConnection

Read AcceptEnvironmentAccountConnectionResponse Source # 
Instance details

Defined in Amazonka.Proton.AcceptEnvironmentAccountConnection

Show AcceptEnvironmentAccountConnectionResponse Source # 
Instance details

Defined in Amazonka.Proton.AcceptEnvironmentAccountConnection

NFData AcceptEnvironmentAccountConnectionResponse Source # 
Instance details

Defined in Amazonka.Proton.AcceptEnvironmentAccountConnection

Eq AcceptEnvironmentAccountConnectionResponse Source # 
Instance details

Defined in Amazonka.Proton.AcceptEnvironmentAccountConnection

type Rep AcceptEnvironmentAccountConnectionResponse Source # 
Instance details

Defined in Amazonka.Proton.AcceptEnvironmentAccountConnection

type Rep AcceptEnvironmentAccountConnectionResponse = D1 ('MetaData "AcceptEnvironmentAccountConnectionResponse" "Amazonka.Proton.AcceptEnvironmentAccountConnection" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "AcceptEnvironmentAccountConnectionResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "environmentAccountConnection") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 EnvironmentAccountConnection)))

CancelComponentDeployment

data CancelComponentDeployment Source #

See: newCancelComponentDeployment smart constructor.

Instances

Instances details
ToJSON CancelComponentDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelComponentDeployment

ToHeaders CancelComponentDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelComponentDeployment

ToPath CancelComponentDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelComponentDeployment

ToQuery CancelComponentDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelComponentDeployment

AWSRequest CancelComponentDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelComponentDeployment

Generic CancelComponentDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelComponentDeployment

Associated Types

type Rep CancelComponentDeployment :: Type -> Type #

Read CancelComponentDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelComponentDeployment

Show CancelComponentDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelComponentDeployment

NFData CancelComponentDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelComponentDeployment

Eq CancelComponentDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelComponentDeployment

Hashable CancelComponentDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelComponentDeployment

type AWSResponse CancelComponentDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelComponentDeployment

type Rep CancelComponentDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelComponentDeployment

type Rep CancelComponentDeployment = D1 ('MetaData "CancelComponentDeployment" "Amazonka.Proton.CancelComponentDeployment" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "CancelComponentDeployment'" 'PrefixI 'True) (S1 ('MetaSel ('Just "componentName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newCancelComponentDeployment Source #

Create a value of CancelComponentDeployment 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:componentName:CancelComponentDeployment', cancelComponentDeployment_componentName - The name of the component with the deployment to cancel.

data CancelComponentDeploymentResponse Source #

See: newCancelComponentDeploymentResponse smart constructor.

Instances

Instances details
Generic CancelComponentDeploymentResponse Source # 
Instance details

Defined in Amazonka.Proton.CancelComponentDeployment

Associated Types

type Rep CancelComponentDeploymentResponse :: Type -> Type #

Show CancelComponentDeploymentResponse Source # 
Instance details

Defined in Amazonka.Proton.CancelComponentDeployment

NFData CancelComponentDeploymentResponse Source # 
Instance details

Defined in Amazonka.Proton.CancelComponentDeployment

Eq CancelComponentDeploymentResponse Source # 
Instance details

Defined in Amazonka.Proton.CancelComponentDeployment

type Rep CancelComponentDeploymentResponse Source # 
Instance details

Defined in Amazonka.Proton.CancelComponentDeployment

type Rep CancelComponentDeploymentResponse = D1 ('MetaData "CancelComponentDeploymentResponse" "Amazonka.Proton.CancelComponentDeployment" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "CancelComponentDeploymentResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "component") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Component)))

newCancelComponentDeploymentResponse Source #

Create a value of CancelComponentDeploymentResponse 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:httpStatus:CancelComponentDeploymentResponse', cancelComponentDeploymentResponse_httpStatus - The response's http status code.

$sel:component:CancelComponentDeploymentResponse', cancelComponentDeploymentResponse_component - The detailed data of the component with the deployment that is being canceled.

CancelEnvironmentDeployment

data CancelEnvironmentDeployment Source #

See: newCancelEnvironmentDeployment smart constructor.

Instances

Instances details
ToJSON CancelEnvironmentDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelEnvironmentDeployment

ToHeaders CancelEnvironmentDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelEnvironmentDeployment

ToPath CancelEnvironmentDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelEnvironmentDeployment

ToQuery CancelEnvironmentDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelEnvironmentDeployment

AWSRequest CancelEnvironmentDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelEnvironmentDeployment

Generic CancelEnvironmentDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelEnvironmentDeployment

Associated Types

type Rep CancelEnvironmentDeployment :: Type -> Type #

Read CancelEnvironmentDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelEnvironmentDeployment

Show CancelEnvironmentDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelEnvironmentDeployment

NFData CancelEnvironmentDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelEnvironmentDeployment

Eq CancelEnvironmentDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelEnvironmentDeployment

Hashable CancelEnvironmentDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelEnvironmentDeployment

type AWSResponse CancelEnvironmentDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelEnvironmentDeployment

type Rep CancelEnvironmentDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelEnvironmentDeployment

type Rep CancelEnvironmentDeployment = D1 ('MetaData "CancelEnvironmentDeployment" "Amazonka.Proton.CancelEnvironmentDeployment" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "CancelEnvironmentDeployment'" 'PrefixI 'True) (S1 ('MetaSel ('Just "environmentName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newCancelEnvironmentDeployment Source #

Create a value of CancelEnvironmentDeployment 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:

CancelEnvironmentDeployment, cancelEnvironmentDeployment_environmentName - The name of the environment with the deployment to cancel.

data CancelEnvironmentDeploymentResponse Source #

Instances

Instances details
Generic CancelEnvironmentDeploymentResponse Source # 
Instance details

Defined in Amazonka.Proton.CancelEnvironmentDeployment

Show CancelEnvironmentDeploymentResponse Source # 
Instance details

Defined in Amazonka.Proton.CancelEnvironmentDeployment

NFData CancelEnvironmentDeploymentResponse Source # 
Instance details

Defined in Amazonka.Proton.CancelEnvironmentDeployment

Eq CancelEnvironmentDeploymentResponse Source # 
Instance details

Defined in Amazonka.Proton.CancelEnvironmentDeployment

type Rep CancelEnvironmentDeploymentResponse Source # 
Instance details

Defined in Amazonka.Proton.CancelEnvironmentDeployment

type Rep CancelEnvironmentDeploymentResponse = D1 ('MetaData "CancelEnvironmentDeploymentResponse" "Amazonka.Proton.CancelEnvironmentDeployment" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "CancelEnvironmentDeploymentResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "environment") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Environment)))

newCancelEnvironmentDeploymentResponse Source #

Create a value of CancelEnvironmentDeploymentResponse 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:httpStatus:CancelEnvironmentDeploymentResponse', cancelEnvironmentDeploymentResponse_httpStatus - The response's http status code.

$sel:environment:CancelEnvironmentDeploymentResponse', cancelEnvironmentDeploymentResponse_environment - The environment summary data that's returned by Proton.

CancelServiceInstanceDeployment

data CancelServiceInstanceDeployment Source #

See: newCancelServiceInstanceDeployment smart constructor.

Instances

Instances details
ToJSON CancelServiceInstanceDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelServiceInstanceDeployment

ToHeaders CancelServiceInstanceDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelServiceInstanceDeployment

ToPath CancelServiceInstanceDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelServiceInstanceDeployment

ToQuery CancelServiceInstanceDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelServiceInstanceDeployment

AWSRequest CancelServiceInstanceDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelServiceInstanceDeployment

Generic CancelServiceInstanceDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelServiceInstanceDeployment

Associated Types

type Rep CancelServiceInstanceDeployment :: Type -> Type #

Read CancelServiceInstanceDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelServiceInstanceDeployment

Show CancelServiceInstanceDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelServiceInstanceDeployment

NFData CancelServiceInstanceDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelServiceInstanceDeployment

Eq CancelServiceInstanceDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelServiceInstanceDeployment

Hashable CancelServiceInstanceDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelServiceInstanceDeployment

type AWSResponse CancelServiceInstanceDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelServiceInstanceDeployment

type Rep CancelServiceInstanceDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelServiceInstanceDeployment

type Rep CancelServiceInstanceDeployment = D1 ('MetaData "CancelServiceInstanceDeployment" "Amazonka.Proton.CancelServiceInstanceDeployment" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "CancelServiceInstanceDeployment'" 'PrefixI 'True) (S1 ('MetaSel ('Just "serviceInstanceName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "serviceName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newCancelServiceInstanceDeployment Source #

Create a value of CancelServiceInstanceDeployment 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:

CancelServiceInstanceDeployment, cancelServiceInstanceDeployment_serviceInstanceName - The name of the service instance with the deployment to cancel.

CancelServiceInstanceDeployment, cancelServiceInstanceDeployment_serviceName - The name of the service with the service instance deployment to cancel.

data CancelServiceInstanceDeploymentResponse Source #

Instances

Instances details
Generic CancelServiceInstanceDeploymentResponse Source # 
Instance details

Defined in Amazonka.Proton.CancelServiceInstanceDeployment

Show CancelServiceInstanceDeploymentResponse Source # 
Instance details

Defined in Amazonka.Proton.CancelServiceInstanceDeployment

NFData CancelServiceInstanceDeploymentResponse Source # 
Instance details

Defined in Amazonka.Proton.CancelServiceInstanceDeployment

Eq CancelServiceInstanceDeploymentResponse Source # 
Instance details

Defined in Amazonka.Proton.CancelServiceInstanceDeployment

type Rep CancelServiceInstanceDeploymentResponse Source # 
Instance details

Defined in Amazonka.Proton.CancelServiceInstanceDeployment

type Rep CancelServiceInstanceDeploymentResponse = D1 ('MetaData "CancelServiceInstanceDeploymentResponse" "Amazonka.Proton.CancelServiceInstanceDeployment" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "CancelServiceInstanceDeploymentResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "serviceInstance") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ServiceInstance)))

CancelServicePipelineDeployment

data CancelServicePipelineDeployment Source #

See: newCancelServicePipelineDeployment smart constructor.

Instances

Instances details
ToJSON CancelServicePipelineDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelServicePipelineDeployment

ToHeaders CancelServicePipelineDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelServicePipelineDeployment

ToPath CancelServicePipelineDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelServicePipelineDeployment

ToQuery CancelServicePipelineDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelServicePipelineDeployment

AWSRequest CancelServicePipelineDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelServicePipelineDeployment

Generic CancelServicePipelineDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelServicePipelineDeployment

Associated Types

type Rep CancelServicePipelineDeployment :: Type -> Type #

Read CancelServicePipelineDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelServicePipelineDeployment

Show CancelServicePipelineDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelServicePipelineDeployment

NFData CancelServicePipelineDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelServicePipelineDeployment

Eq CancelServicePipelineDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelServicePipelineDeployment

Hashable CancelServicePipelineDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelServicePipelineDeployment

type AWSResponse CancelServicePipelineDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelServicePipelineDeployment

type Rep CancelServicePipelineDeployment Source # 
Instance details

Defined in Amazonka.Proton.CancelServicePipelineDeployment

type Rep CancelServicePipelineDeployment = D1 ('MetaData "CancelServicePipelineDeployment" "Amazonka.Proton.CancelServicePipelineDeployment" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "CancelServicePipelineDeployment'" 'PrefixI 'True) (S1 ('MetaSel ('Just "serviceName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newCancelServicePipelineDeployment Source #

Create a value of CancelServicePipelineDeployment 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:

CancelServicePipelineDeployment, cancelServicePipelineDeployment_serviceName - The name of the service with the service pipeline deployment to cancel.

data CancelServicePipelineDeploymentResponse Source #

Instances

Instances details
Generic CancelServicePipelineDeploymentResponse Source # 
Instance details

Defined in Amazonka.Proton.CancelServicePipelineDeployment

Show CancelServicePipelineDeploymentResponse Source # 
Instance details

Defined in Amazonka.Proton.CancelServicePipelineDeployment

NFData CancelServicePipelineDeploymentResponse Source # 
Instance details

Defined in Amazonka.Proton.CancelServicePipelineDeployment

Eq CancelServicePipelineDeploymentResponse Source # 
Instance details

Defined in Amazonka.Proton.CancelServicePipelineDeployment

type Rep CancelServicePipelineDeploymentResponse Source # 
Instance details

Defined in Amazonka.Proton.CancelServicePipelineDeployment

type Rep CancelServicePipelineDeploymentResponse = D1 ('MetaData "CancelServicePipelineDeploymentResponse" "Amazonka.Proton.CancelServicePipelineDeployment" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "CancelServicePipelineDeploymentResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "pipeline") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ServicePipeline)))

newCancelServicePipelineDeploymentResponse Source #

Create a value of CancelServicePipelineDeploymentResponse 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:httpStatus:CancelServicePipelineDeploymentResponse', cancelServicePipelineDeploymentResponse_httpStatus - The response's http status code.

CancelServicePipelineDeploymentResponse, cancelServicePipelineDeploymentResponse_pipeline - The service pipeline detail data that's returned by Proton.

CreateComponent

data CreateComponent Source #

See: newCreateComponent smart constructor.

Instances

Instances details
ToJSON CreateComponent Source # 
Instance details

Defined in Amazonka.Proton.CreateComponent

ToHeaders CreateComponent Source # 
Instance details

Defined in Amazonka.Proton.CreateComponent

ToPath CreateComponent Source # 
Instance details

Defined in Amazonka.Proton.CreateComponent

ToQuery CreateComponent Source # 
Instance details

Defined in Amazonka.Proton.CreateComponent

AWSRequest CreateComponent Source # 
Instance details

Defined in Amazonka.Proton.CreateComponent

Associated Types

type AWSResponse CreateComponent #

Generic CreateComponent Source # 
Instance details

Defined in Amazonka.Proton.CreateComponent

Associated Types

type Rep CreateComponent :: Type -> Type #

Show CreateComponent Source # 
Instance details

Defined in Amazonka.Proton.CreateComponent

NFData CreateComponent Source # 
Instance details

Defined in Amazonka.Proton.CreateComponent

Methods

rnf :: CreateComponent -> () #

Eq CreateComponent Source # 
Instance details

Defined in Amazonka.Proton.CreateComponent

Hashable CreateComponent Source # 
Instance details

Defined in Amazonka.Proton.CreateComponent

type AWSResponse CreateComponent Source # 
Instance details

Defined in Amazonka.Proton.CreateComponent

type Rep CreateComponent Source # 
Instance details

Defined in Amazonka.Proton.CreateComponent

newCreateComponent Source #

Create a value of CreateComponent 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:

CreateComponent, createComponent_description - An optional customer-provided description of the component.

CreateComponent, createComponent_environmentName - The name of the Proton environment that you want to associate this component with. You must specify this when you don't specify serviceInstanceName and serviceName.

CreateComponent, createComponent_serviceInstanceName - The name of the service instance that you want to attach this component to. If you don't specify this, the component isn't attached to any service instance. Specify both serviceInstanceName and serviceName or neither of them.

CreateComponent, createComponent_serviceName - The name of the service that serviceInstanceName is associated with. If you don't specify this, the component isn't attached to any service instance. Specify both serviceInstanceName and serviceName or neither of them.

CreateComponent, createComponent_serviceSpec - The service spec that you want the component to use to access service inputs. Set this only when you attach the component to a service instance.

$sel:tags:CreateComponent', createComponent_tags - An optional list of metadata items that you can associate with the Proton component. A tag is a key-value pair.

For more information, see Proton resources and tagging in the Proton User Guide.

$sel:manifest:CreateComponent', createComponent_manifest - A path to a manifest file that lists the Infrastructure as Code (IaC) file, template language, and rendering engine for infrastructure that a custom component provisions.

CreateComponent, createComponent_name - The customer-provided name of the component.

$sel:templateFile:CreateComponent', createComponent_templateFile - A path to the Infrastructure as Code (IaC) file describing infrastructure that a custom component provisions.

Components support a single IaC file, even if you use Terraform as your template language.

data CreateComponentResponse Source #

See: newCreateComponentResponse smart constructor.

Instances

Instances details
Generic CreateComponentResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateComponent

Associated Types

type Rep CreateComponentResponse :: Type -> Type #

Show CreateComponentResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateComponent

NFData CreateComponentResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateComponent

Methods

rnf :: CreateComponentResponse -> () #

Eq CreateComponentResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateComponent

type Rep CreateComponentResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateComponent

type Rep CreateComponentResponse = D1 ('MetaData "CreateComponentResponse" "Amazonka.Proton.CreateComponent" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "CreateComponentResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "component") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Component)))

newCreateComponentResponse Source #

Create a value of CreateComponentResponse 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:httpStatus:CreateComponentResponse', createComponentResponse_httpStatus - The response's http status code.

$sel:component:CreateComponentResponse', createComponentResponse_component - The detailed data of the created component.

CreateEnvironment

data CreateEnvironment Source #

See: newCreateEnvironment smart constructor.

Instances

Instances details
ToJSON CreateEnvironment Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironment

ToHeaders CreateEnvironment Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironment

ToPath CreateEnvironment Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironment

ToQuery CreateEnvironment Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironment

AWSRequest CreateEnvironment Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironment

Associated Types

type AWSResponse CreateEnvironment #

Generic CreateEnvironment Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironment

Associated Types

type Rep CreateEnvironment :: Type -> Type #

Show CreateEnvironment Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironment

NFData CreateEnvironment Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironment

Methods

rnf :: CreateEnvironment -> () #

Eq CreateEnvironment Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironment

Hashable CreateEnvironment Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironment

type AWSResponse CreateEnvironment Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironment

type Rep CreateEnvironment Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironment

type Rep CreateEnvironment = D1 ('MetaData "CreateEnvironment" "Amazonka.Proton.CreateEnvironment" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "CreateEnvironment'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "codebuildRoleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "componentRoleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))))) :*: (S1 ('MetaSel ('Just "environmentAccountConnectionId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "protonServiceRoleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "provisioningRepository") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe RepositoryBranchInput))))) :*: ((S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Tag])) :*: (S1 ('MetaSel ('Just "templateMinorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))) :*: (S1 ('MetaSel ('Just "spec") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Sensitive Text)) :*: (S1 ('MetaSel ('Just "templateMajorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "templateName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))))

newCreateEnvironment Source #

Create a value of CreateEnvironment 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:

CreateEnvironment, createEnvironment_codebuildRoleArn - The Amazon Resource Name (ARN) of the IAM service role that allows Proton to provision infrastructure using CodeBuild-based provisioning on your behalf.

To use CodeBuild-based provisioning for the environment or for any service instance running in the environment, specify either the environmentAccountConnectionId or codebuildRoleArn parameter.

CreateEnvironment, createEnvironment_componentRoleArn - The Amazon Resource Name (ARN) of the IAM service role that Proton uses when provisioning directly defined components in this environment. It determines the scope of infrastructure that a component can provision.

You must specify componentRoleArn to allow directly defined components to be associated with this environment.

For more information about components, see Proton components in the Proton User Guide.

CreateEnvironment, createEnvironment_description - A description of the environment that's being created and deployed.

CreateEnvironment, createEnvironment_environmentAccountConnectionId - The ID of the environment account connection that you provide if you're provisioning your environment infrastructure resources to an environment account. For more information, see Environment account connections in the Proton User guide.

To use Amazon Web Services-managed provisioning for the environment, specify either the environmentAccountConnectionId or protonServiceRoleArn parameter and omit the provisioningRepository parameter.

CreateEnvironment, createEnvironment_protonServiceRoleArn - The Amazon Resource Name (ARN) of the Proton service role that allows Proton to make calls to other services on your behalf.

To use Amazon Web Services-managed provisioning for the environment, specify either the environmentAccountConnectionId or protonServiceRoleArn parameter and omit the provisioningRepository parameter.

CreateEnvironment, createEnvironment_provisioningRepository - The linked repository that you use to host your rendered infrastructure templates for self-managed provisioning. A linked repository is a repository that has been registered with Proton. For more information, see CreateRepository.

To use self-managed provisioning for the environment, specify this parameter and omit the environmentAccountConnectionId and protonServiceRoleArn parameters.

$sel:tags:CreateEnvironment', createEnvironment_tags - An optional list of metadata items that you can associate with the Proton environment. A tag is a key-value pair.

For more information, see Proton resources and tagging in the Proton User Guide.

CreateEnvironment, createEnvironment_templateMinorVersion - The minor version of the environment template.

CreateEnvironment, createEnvironment_name - The name of the environment.

CreateEnvironment, createEnvironment_spec - A YAML formatted string that provides inputs as defined in the environment template bundle schema file. For more information, see Environments in the Proton User Guide.

CreateEnvironment, createEnvironment_templateMajorVersion - The major version of the environment template.

CreateEnvironment, createEnvironment_templateName - The name of the environment template. For more information, see Environment Templates in the Proton User Guide.

data CreateEnvironmentResponse Source #

See: newCreateEnvironmentResponse smart constructor.

Instances

Instances details
Generic CreateEnvironmentResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironment

Associated Types

type Rep CreateEnvironmentResponse :: Type -> Type #

Show CreateEnvironmentResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironment

NFData CreateEnvironmentResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironment

Eq CreateEnvironmentResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironment

type Rep CreateEnvironmentResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironment

type Rep CreateEnvironmentResponse = D1 ('MetaData "CreateEnvironmentResponse" "Amazonka.Proton.CreateEnvironment" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "CreateEnvironmentResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "environment") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Environment)))

newCreateEnvironmentResponse Source #

Create a value of CreateEnvironmentResponse 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:httpStatus:CreateEnvironmentResponse', createEnvironmentResponse_httpStatus - The response's http status code.

$sel:environment:CreateEnvironmentResponse', createEnvironmentResponse_environment - The environment detail data that's returned by Proton.

CreateEnvironmentAccountConnection

data CreateEnvironmentAccountConnection Source #

Instances

Instances details
ToJSON CreateEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentAccountConnection

ToHeaders CreateEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentAccountConnection

ToPath CreateEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentAccountConnection

ToQuery CreateEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentAccountConnection

AWSRequest CreateEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentAccountConnection

Generic CreateEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentAccountConnection

Associated Types

type Rep CreateEnvironmentAccountConnection :: Type -> Type #

Read CreateEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentAccountConnection

Show CreateEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentAccountConnection

NFData CreateEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentAccountConnection

Eq CreateEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentAccountConnection

Hashable CreateEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentAccountConnection

type AWSResponse CreateEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentAccountConnection

type Rep CreateEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentAccountConnection

type Rep CreateEnvironmentAccountConnection = D1 ('MetaData "CreateEnvironmentAccountConnection" "Amazonka.Proton.CreateEnvironmentAccountConnection" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "CreateEnvironmentAccountConnection'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "clientToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "codebuildRoleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "componentRoleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "roleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Tag]))) :*: (S1 ('MetaSel ('Just "environmentName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "managementAccountId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))))

newCreateEnvironmentAccountConnection Source #

Create a value of CreateEnvironmentAccountConnection 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:clientToken:CreateEnvironmentAccountConnection', createEnvironmentAccountConnection_clientToken - When included, if two identical requests are made with the same client token, Proton returns the environment account connection that the first request created.

CreateEnvironmentAccountConnection, createEnvironmentAccountConnection_codebuildRoleArn - The Amazon Resource Name (ARN) of an IAM service role in the environment account. Proton uses this role to provision infrastructure resources using CodeBuild-based provisioning in the associated environment account.

CreateEnvironmentAccountConnection, createEnvironmentAccountConnection_componentRoleArn - The Amazon Resource Name (ARN) of the IAM service role that Proton uses when provisioning directly defined components in the associated environment account. It determines the scope of infrastructure that a component can provision in the account.

You must specify componentRoleArn to allow directly defined components to be associated with any environments running in this account.

For more information about components, see Proton components in the Proton User Guide.

CreateEnvironmentAccountConnection, createEnvironmentAccountConnection_roleArn - The Amazon Resource Name (ARN) of the IAM service role that's created in the environment account. Proton uses this role to provision infrastructure resources in the associated environment account.

$sel:tags:CreateEnvironmentAccountConnection', createEnvironmentAccountConnection_tags - An optional list of metadata items that you can associate with the Proton environment account connection. A tag is a key-value pair.

For more information, see Proton resources and tagging in the Proton User Guide.

CreateEnvironmentAccountConnection, createEnvironmentAccountConnection_environmentName - The name of the Proton environment that's created in the associated management account.

CreateEnvironmentAccountConnection, createEnvironmentAccountConnection_managementAccountId - The ID of the management account that accepts or rejects the environment account connection. You create and manage the Proton environment in this account. If the management account accepts the environment account connection, Proton can use the associated IAM role to provision environment infrastructure resources in the associated environment account.

data CreateEnvironmentAccountConnectionResponse Source #

Instances

Instances details
Generic CreateEnvironmentAccountConnectionResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentAccountConnection

Read CreateEnvironmentAccountConnectionResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentAccountConnection

Show CreateEnvironmentAccountConnectionResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentAccountConnection

NFData CreateEnvironmentAccountConnectionResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentAccountConnection

Eq CreateEnvironmentAccountConnectionResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentAccountConnection

type Rep CreateEnvironmentAccountConnectionResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentAccountConnection

type Rep CreateEnvironmentAccountConnectionResponse = D1 ('MetaData "CreateEnvironmentAccountConnectionResponse" "Amazonka.Proton.CreateEnvironmentAccountConnection" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "CreateEnvironmentAccountConnectionResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "environmentAccountConnection") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 EnvironmentAccountConnection)))

CreateEnvironmentTemplate

data CreateEnvironmentTemplate Source #

See: newCreateEnvironmentTemplate smart constructor.

Instances

Instances details
ToJSON CreateEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentTemplate

ToHeaders CreateEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentTemplate

ToPath CreateEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentTemplate

ToQuery CreateEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentTemplate

AWSRequest CreateEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentTemplate

Generic CreateEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentTemplate

Associated Types

type Rep CreateEnvironmentTemplate :: Type -> Type #

Show CreateEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentTemplate

NFData CreateEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentTemplate

Eq CreateEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentTemplate

Hashable CreateEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentTemplate

type AWSResponse CreateEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentTemplate

type Rep CreateEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentTemplate

type Rep CreateEnvironmentTemplate = D1 ('MetaData "CreateEnvironmentTemplate" "Amazonka.Proton.CreateEnvironmentTemplate" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "CreateEnvironmentTemplate'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: (S1 ('MetaSel ('Just "displayName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: S1 ('MetaSel ('Just "encryptionKey") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: (S1 ('MetaSel ('Just "provisioning") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Provisioning)) :*: (S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Tag])) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))))

newCreateEnvironmentTemplate Source #

Create a value of CreateEnvironmentTemplate 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:

CreateEnvironmentTemplate, createEnvironmentTemplate_description - A description of the environment template.

CreateEnvironmentTemplate, createEnvironmentTemplate_displayName - The environment template name as displayed in the developer interface.

CreateEnvironmentTemplate, createEnvironmentTemplate_encryptionKey - A customer provided encryption key that Proton uses to encrypt data.

CreateEnvironmentTemplate, createEnvironmentTemplate_provisioning - When included, indicates that the environment template is for customer provisioned and managed infrastructure.

$sel:tags:CreateEnvironmentTemplate', createEnvironmentTemplate_tags - An optional list of metadata items that you can associate with the Proton environment template. A tag is a key-value pair.

For more information, see Proton resources and tagging in the Proton User Guide.

CreateEnvironmentTemplate, createEnvironmentTemplate_name - The name of the environment template.

data CreateEnvironmentTemplateResponse Source #

See: newCreateEnvironmentTemplateResponse smart constructor.

Instances

Instances details
Generic CreateEnvironmentTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentTemplate

Associated Types

type Rep CreateEnvironmentTemplateResponse :: Type -> Type #

Show CreateEnvironmentTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentTemplate

NFData CreateEnvironmentTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentTemplate

Eq CreateEnvironmentTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentTemplate

type Rep CreateEnvironmentTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentTemplate

type Rep CreateEnvironmentTemplateResponse = D1 ('MetaData "CreateEnvironmentTemplateResponse" "Amazonka.Proton.CreateEnvironmentTemplate" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "CreateEnvironmentTemplateResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "environmentTemplate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 EnvironmentTemplate)))

newCreateEnvironmentTemplateResponse Source #

Create a value of CreateEnvironmentTemplateResponse 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:httpStatus:CreateEnvironmentTemplateResponse', createEnvironmentTemplateResponse_httpStatus - The response's http status code.

$sel:environmentTemplate:CreateEnvironmentTemplateResponse', createEnvironmentTemplateResponse_environmentTemplate - The environment template detail data that's returned by Proton.

CreateEnvironmentTemplateVersion

data CreateEnvironmentTemplateVersion Source #

See: newCreateEnvironmentTemplateVersion smart constructor.

Instances

Instances details
ToJSON CreateEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentTemplateVersion

ToHeaders CreateEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentTemplateVersion

ToPath CreateEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentTemplateVersion

ToQuery CreateEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentTemplateVersion

AWSRequest CreateEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentTemplateVersion

Generic CreateEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentTemplateVersion

Associated Types

type Rep CreateEnvironmentTemplateVersion :: Type -> Type #

Show CreateEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentTemplateVersion

NFData CreateEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentTemplateVersion

Eq CreateEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentTemplateVersion

Hashable CreateEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentTemplateVersion

type AWSResponse CreateEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentTemplateVersion

type Rep CreateEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentTemplateVersion

type Rep CreateEnvironmentTemplateVersion = D1 ('MetaData "CreateEnvironmentTemplateVersion" "Amazonka.Proton.CreateEnvironmentTemplateVersion" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "CreateEnvironmentTemplateVersion'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "clientToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: S1 ('MetaSel ('Just "majorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: (S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Tag])) :*: (S1 ('MetaSel ('Just "source") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 TemplateVersionSourceInput) :*: S1 ('MetaSel ('Just "templateName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))))

newCreateEnvironmentTemplateVersion Source #

Create a value of CreateEnvironmentTemplateVersion 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:clientToken:CreateEnvironmentTemplateVersion', createEnvironmentTemplateVersion_clientToken - When included, if two identical requests are made with the same client token, Proton returns the environment template version that the first request created.

CreateEnvironmentTemplateVersion, createEnvironmentTemplateVersion_description - A description of the new version of an environment template.

CreateEnvironmentTemplateVersion, createEnvironmentTemplateVersion_majorVersion - To create a new minor version of the environment template, include major Version.

To create a new major and minor version of the environment template, exclude major Version.

$sel:tags:CreateEnvironmentTemplateVersion', createEnvironmentTemplateVersion_tags - An optional list of metadata items that you can associate with the Proton environment template version. A tag is a key-value pair.

For more information, see Proton resources and tagging in the Proton User Guide.

$sel:source:CreateEnvironmentTemplateVersion', createEnvironmentTemplateVersion_source - An object that includes the template bundle S3 bucket path and name for the new version of an template.

CreateEnvironmentTemplateVersion, createEnvironmentTemplateVersion_templateName - The name of the environment template.

data CreateEnvironmentTemplateVersionResponse Source #

Instances

Instances details
Generic CreateEnvironmentTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentTemplateVersion

Show CreateEnvironmentTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentTemplateVersion

NFData CreateEnvironmentTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentTemplateVersion

Eq CreateEnvironmentTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentTemplateVersion

type Rep CreateEnvironmentTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateEnvironmentTemplateVersion

type Rep CreateEnvironmentTemplateVersionResponse = D1 ('MetaData "CreateEnvironmentTemplateVersionResponse" "Amazonka.Proton.CreateEnvironmentTemplateVersion" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "CreateEnvironmentTemplateVersionResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "environmentTemplateVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 EnvironmentTemplateVersion)))

CreateRepository

data CreateRepository Source #

See: newCreateRepository smart constructor.

Instances

Instances details
ToJSON CreateRepository Source # 
Instance details

Defined in Amazonka.Proton.CreateRepository

ToHeaders CreateRepository Source # 
Instance details

Defined in Amazonka.Proton.CreateRepository

ToPath CreateRepository Source # 
Instance details

Defined in Amazonka.Proton.CreateRepository

ToQuery CreateRepository Source # 
Instance details

Defined in Amazonka.Proton.CreateRepository

AWSRequest CreateRepository Source # 
Instance details

Defined in Amazonka.Proton.CreateRepository

Associated Types

type AWSResponse CreateRepository #

Generic CreateRepository Source # 
Instance details

Defined in Amazonka.Proton.CreateRepository

Associated Types

type Rep CreateRepository :: Type -> Type #

Read CreateRepository Source # 
Instance details

Defined in Amazonka.Proton.CreateRepository

Show CreateRepository Source # 
Instance details

Defined in Amazonka.Proton.CreateRepository

NFData CreateRepository Source # 
Instance details

Defined in Amazonka.Proton.CreateRepository

Methods

rnf :: CreateRepository -> () #

Eq CreateRepository Source # 
Instance details

Defined in Amazonka.Proton.CreateRepository

Hashable CreateRepository Source # 
Instance details

Defined in Amazonka.Proton.CreateRepository

type AWSResponse CreateRepository Source # 
Instance details

Defined in Amazonka.Proton.CreateRepository

type Rep CreateRepository Source # 
Instance details

Defined in Amazonka.Proton.CreateRepository

type Rep CreateRepository = D1 ('MetaData "CreateRepository" "Amazonka.Proton.CreateRepository" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "CreateRepository'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "encryptionKey") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Tag]))) :*: (S1 ('MetaSel ('Just "connectionArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "provider") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 RepositoryProvider)))))

newCreateRepository Source #

Create a value of CreateRepository 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:

CreateRepository, createRepository_encryptionKey - The ARN of your customer Amazon Web Services Key Management Service (Amazon Web Services KMS) key.

$sel:tags:CreateRepository', createRepository_tags - An optional list of metadata items that you can associate with the Proton repository. A tag is a key-value pair.

For more information, see Proton resources and tagging in the Proton User Guide.

CreateRepository, createRepository_connectionArn - The Amazon Resource Name (ARN) of your AWS CodeStar connection that connects Proton to your repository provider account. For more information, see Setting up for Proton in the Proton User Guide.

CreateRepository, createRepository_name - The repository name (for example, myrepos/myrepo).

CreateRepository, createRepository_provider - The repository provider.

data CreateRepositoryResponse Source #

See: newCreateRepositoryResponse smart constructor.

Instances

Instances details
Generic CreateRepositoryResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateRepository

Associated Types

type Rep CreateRepositoryResponse :: Type -> Type #

Read CreateRepositoryResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateRepository

Show CreateRepositoryResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateRepository

NFData CreateRepositoryResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateRepository

Eq CreateRepositoryResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateRepository

type Rep CreateRepositoryResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateRepository

type Rep CreateRepositoryResponse = D1 ('MetaData "CreateRepositoryResponse" "Amazonka.Proton.CreateRepository" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "CreateRepositoryResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "repository") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Repository)))

newCreateRepositoryResponse Source #

Create a value of CreateRepositoryResponse 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:httpStatus:CreateRepositoryResponse', createRepositoryResponse_httpStatus - The response's http status code.

$sel:repository:CreateRepositoryResponse', createRepositoryResponse_repository - The repository link's detail data that's returned by Proton.

CreateService

data CreateService Source #

See: newCreateService smart constructor.

Instances

Instances details
ToJSON CreateService Source # 
Instance details

Defined in Amazonka.Proton.CreateService

ToHeaders CreateService Source # 
Instance details

Defined in Amazonka.Proton.CreateService

ToPath CreateService Source # 
Instance details

Defined in Amazonka.Proton.CreateService

ToQuery CreateService Source # 
Instance details

Defined in Amazonka.Proton.CreateService

AWSRequest CreateService Source # 
Instance details

Defined in Amazonka.Proton.CreateService

Associated Types

type AWSResponse CreateService #

Generic CreateService Source # 
Instance details

Defined in Amazonka.Proton.CreateService

Associated Types

type Rep CreateService :: Type -> Type #

Show CreateService Source # 
Instance details

Defined in Amazonka.Proton.CreateService

NFData CreateService Source # 
Instance details

Defined in Amazonka.Proton.CreateService

Methods

rnf :: CreateService -> () #

Eq CreateService Source # 
Instance details

Defined in Amazonka.Proton.CreateService

Hashable CreateService Source # 
Instance details

Defined in Amazonka.Proton.CreateService

type AWSResponse CreateService Source # 
Instance details

Defined in Amazonka.Proton.CreateService

type Rep CreateService Source # 
Instance details

Defined in Amazonka.Proton.CreateService

newCreateService Source #

Create a value of CreateService 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:

CreateService, createService_branchName - The name of the code repository branch that holds the code that's deployed in Proton. Don't include this parameter if your service template doesn't include a service pipeline.

CreateService, createService_description - A description of the Proton service.

CreateService, createService_repositoryConnectionArn - The Amazon Resource Name (ARN) of the repository connection. For more information, see Setting up an AWS CodeStar connection in the Proton User Guide. Don't include this parameter if your service template doesn't include a service pipeline.

CreateService, createService_repositoryId - The ID of the code repository. Don't include this parameter if your service template doesn't include a service pipeline.

$sel:tags:CreateService', createService_tags - An optional list of metadata items that you can associate with the Proton service. A tag is a key-value pair.

For more information, see Proton resources and tagging in the Proton User Guide.

CreateService, createService_templateMinorVersion - The minor version of the service template that was used to create the service.

CreateService, createService_name - The service name.

CreateService, createService_spec - A link to a spec file that provides inputs as defined in the service template bundle schema file. The spec file is in YAML format. Don’t include pipeline inputs in the spec if your service template doesn’t include a service pipeline. For more information, see Create a service in the Proton User Guide.

CreateService, createService_templateMajorVersion - The major version of the service template that was used to create the service.

CreateService, createService_templateName - The name of the service template that's used to create the service.

data CreateServiceResponse Source #

See: newCreateServiceResponse smart constructor.

newCreateServiceResponse Source #

Create a value of CreateServiceResponse 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:httpStatus:CreateServiceResponse', createServiceResponse_httpStatus - The response's http status code.

$sel:service:CreateServiceResponse', createServiceResponse_service - The service detail data that's returned by Proton.

CreateServiceTemplate

data CreateServiceTemplate Source #

See: newCreateServiceTemplate smart constructor.

Instances

Instances details
ToJSON CreateServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.CreateServiceTemplate

ToHeaders CreateServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.CreateServiceTemplate

ToPath CreateServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.CreateServiceTemplate

ToQuery CreateServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.CreateServiceTemplate

AWSRequest CreateServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.CreateServiceTemplate

Associated Types

type AWSResponse CreateServiceTemplate #

Generic CreateServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.CreateServiceTemplate

Associated Types

type Rep CreateServiceTemplate :: Type -> Type #

Show CreateServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.CreateServiceTemplate

NFData CreateServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.CreateServiceTemplate

Methods

rnf :: CreateServiceTemplate -> () #

Eq CreateServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.CreateServiceTemplate

Hashable CreateServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.CreateServiceTemplate

type AWSResponse CreateServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.CreateServiceTemplate

type Rep CreateServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.CreateServiceTemplate

type Rep CreateServiceTemplate = D1 ('MetaData "CreateServiceTemplate" "Amazonka.Proton.CreateServiceTemplate" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "CreateServiceTemplate'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: (S1 ('MetaSel ('Just "displayName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: S1 ('MetaSel ('Just "encryptionKey") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: (S1 ('MetaSel ('Just "pipelineProvisioning") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Provisioning)) :*: (S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Tag])) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))))

newCreateServiceTemplate Source #

Create a value of CreateServiceTemplate 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:

CreateServiceTemplate, createServiceTemplate_description - A description of the service template.

CreateServiceTemplate, createServiceTemplate_displayName - The name of the service template as displayed in the developer interface.

CreateServiceTemplate, createServiceTemplate_encryptionKey - A customer provided encryption key that's used to encrypt data.

CreateServiceTemplate, createServiceTemplate_pipelineProvisioning - By default, Proton provides a service pipeline for your service. When this parameter is included, it indicates that an Proton service pipeline isn't provided for your service. After it's included, it can't be changed. For more information, see Template bundles in the Proton User Guide.

$sel:tags:CreateServiceTemplate', createServiceTemplate_tags - An optional list of metadata items that you can associate with the Proton service template. A tag is a key-value pair.

For more information, see Proton resources and tagging in the Proton User Guide.

CreateServiceTemplate, createServiceTemplate_name - The name of the service template.

data CreateServiceTemplateResponse Source #

See: newCreateServiceTemplateResponse smart constructor.

Instances

Instances details
Generic CreateServiceTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateServiceTemplate

Associated Types

type Rep CreateServiceTemplateResponse :: Type -> Type #

Show CreateServiceTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateServiceTemplate

NFData CreateServiceTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateServiceTemplate

Eq CreateServiceTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateServiceTemplate

type Rep CreateServiceTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateServiceTemplate

type Rep CreateServiceTemplateResponse = D1 ('MetaData "CreateServiceTemplateResponse" "Amazonka.Proton.CreateServiceTemplate" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "CreateServiceTemplateResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "serviceTemplate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ServiceTemplate)))

newCreateServiceTemplateResponse Source #

Create a value of CreateServiceTemplateResponse 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:httpStatus:CreateServiceTemplateResponse', createServiceTemplateResponse_httpStatus - The response's http status code.

$sel:serviceTemplate:CreateServiceTemplateResponse', createServiceTemplateResponse_serviceTemplate - The service template detail data that's returned by Proton.

CreateServiceTemplateVersion

data CreateServiceTemplateVersion Source #

See: newCreateServiceTemplateVersion smart constructor.

Instances

Instances details
ToJSON CreateServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.CreateServiceTemplateVersion

ToHeaders CreateServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.CreateServiceTemplateVersion

ToPath CreateServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.CreateServiceTemplateVersion

ToQuery CreateServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.CreateServiceTemplateVersion

AWSRequest CreateServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.CreateServiceTemplateVersion

Generic CreateServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.CreateServiceTemplateVersion

Associated Types

type Rep CreateServiceTemplateVersion :: Type -> Type #

Show CreateServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.CreateServiceTemplateVersion

NFData CreateServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.CreateServiceTemplateVersion

Eq CreateServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.CreateServiceTemplateVersion

Hashable CreateServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.CreateServiceTemplateVersion

type AWSResponse CreateServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.CreateServiceTemplateVersion

type Rep CreateServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.CreateServiceTemplateVersion

newCreateServiceTemplateVersion Source #

Create a value of CreateServiceTemplateVersion 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:clientToken:CreateServiceTemplateVersion', createServiceTemplateVersion_clientToken - When included, if two identical requests are made with the same client token, Proton returns the service template version that the first request created.

CreateServiceTemplateVersion, createServiceTemplateVersion_description - A description of the new version of a service template.

CreateServiceTemplateVersion, createServiceTemplateVersion_majorVersion - To create a new minor version of the service template, include a major Version.

To create a new major and minor version of the service template, exclude major Version.

CreateServiceTemplateVersion, createServiceTemplateVersion_supportedComponentSources - An array of supported component sources. Components with supported sources can be attached to service instances based on this service template version.

For more information about components, see Proton components in the Proton User Guide.

$sel:tags:CreateServiceTemplateVersion', createServiceTemplateVersion_tags - An optional list of metadata items that you can associate with the Proton service template version. A tag is a key-value pair.

For more information, see Proton resources and tagging in the Proton User Guide.

CreateServiceTemplateVersion, createServiceTemplateVersion_compatibleEnvironmentTemplates - An array of environment template objects that are compatible with the new service template version. A service instance based on this service template version can run in environments based on compatible templates.

$sel:source:CreateServiceTemplateVersion', createServiceTemplateVersion_source - An object that includes the template bundle S3 bucket path and name for the new version of a service template.

CreateServiceTemplateVersion, createServiceTemplateVersion_templateName - The name of the service template.

data CreateServiceTemplateVersionResponse Source #

Instances

Instances details
Generic CreateServiceTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateServiceTemplateVersion

Show CreateServiceTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateServiceTemplateVersion

NFData CreateServiceTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateServiceTemplateVersion

Eq CreateServiceTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateServiceTemplateVersion

type Rep CreateServiceTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateServiceTemplateVersion

type Rep CreateServiceTemplateVersionResponse = D1 ('MetaData "CreateServiceTemplateVersionResponse" "Amazonka.Proton.CreateServiceTemplateVersion" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "CreateServiceTemplateVersionResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "serviceTemplateVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ServiceTemplateVersion)))

newCreateServiceTemplateVersionResponse Source #

Create a value of CreateServiceTemplateVersionResponse 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:httpStatus:CreateServiceTemplateVersionResponse', createServiceTemplateVersionResponse_httpStatus - The response's http status code.

$sel:serviceTemplateVersion:CreateServiceTemplateVersionResponse', createServiceTemplateVersionResponse_serviceTemplateVersion - The service template version summary of detail data that's returned by Proton.

CreateTemplateSyncConfig

data CreateTemplateSyncConfig Source #

See: newCreateTemplateSyncConfig smart constructor.

Instances

Instances details
ToJSON CreateTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.CreateTemplateSyncConfig

ToHeaders CreateTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.CreateTemplateSyncConfig

ToPath CreateTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.CreateTemplateSyncConfig

ToQuery CreateTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.CreateTemplateSyncConfig

AWSRequest CreateTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.CreateTemplateSyncConfig

Generic CreateTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.CreateTemplateSyncConfig

Associated Types

type Rep CreateTemplateSyncConfig :: Type -> Type #

Read CreateTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.CreateTemplateSyncConfig

Show CreateTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.CreateTemplateSyncConfig

NFData CreateTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.CreateTemplateSyncConfig

Eq CreateTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.CreateTemplateSyncConfig

Hashable CreateTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.CreateTemplateSyncConfig

type AWSResponse CreateTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.CreateTemplateSyncConfig

type Rep CreateTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.CreateTemplateSyncConfig

type Rep CreateTemplateSyncConfig = D1 ('MetaData "CreateTemplateSyncConfig" "Amazonka.Proton.CreateTemplateSyncConfig" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "CreateTemplateSyncConfig'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "subdirectory") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "branch") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "repositoryName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))) :*: (S1 ('MetaSel ('Just "repositoryProvider") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 RepositoryProvider) :*: (S1 ('MetaSel ('Just "templateName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "templateType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 TemplateType)))))

newCreateTemplateSyncConfig Source #

Create a value of CreateTemplateSyncConfig 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:

CreateTemplateSyncConfig, createTemplateSyncConfig_subdirectory - A repository subdirectory path to your template bundle directory. When included, Proton limits the template bundle search to this repository directory.

CreateTemplateSyncConfig, createTemplateSyncConfig_branch - The repository branch for your template.

CreateTemplateSyncConfig, createTemplateSyncConfig_repositoryName - The repository name (for example, myrepos/myrepo).

CreateTemplateSyncConfig, createTemplateSyncConfig_repositoryProvider - The provider type for your repository.

CreateTemplateSyncConfig, createTemplateSyncConfig_templateName - The name of your registered template.

CreateTemplateSyncConfig, createTemplateSyncConfig_templateType - The type of the registered template.

data CreateTemplateSyncConfigResponse Source #

See: newCreateTemplateSyncConfigResponse smart constructor.

Instances

Instances details
Generic CreateTemplateSyncConfigResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateTemplateSyncConfig

Associated Types

type Rep CreateTemplateSyncConfigResponse :: Type -> Type #

Read CreateTemplateSyncConfigResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateTemplateSyncConfig

Show CreateTemplateSyncConfigResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateTemplateSyncConfig

NFData CreateTemplateSyncConfigResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateTemplateSyncConfig

Eq CreateTemplateSyncConfigResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateTemplateSyncConfig

type Rep CreateTemplateSyncConfigResponse Source # 
Instance details

Defined in Amazonka.Proton.CreateTemplateSyncConfig

type Rep CreateTemplateSyncConfigResponse = D1 ('MetaData "CreateTemplateSyncConfigResponse" "Amazonka.Proton.CreateTemplateSyncConfig" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "CreateTemplateSyncConfigResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "templateSyncConfig") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe TemplateSyncConfig)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newCreateTemplateSyncConfigResponse Source #

Create a value of CreateTemplateSyncConfigResponse 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:templateSyncConfig:CreateTemplateSyncConfigResponse', createTemplateSyncConfigResponse_templateSyncConfig - The template sync configuration detail data that's returned by Proton.

$sel:httpStatus:CreateTemplateSyncConfigResponse', createTemplateSyncConfigResponse_httpStatus - The response's http status code.

DeleteComponent

data DeleteComponent Source #

See: newDeleteComponent smart constructor.

Constructors

DeleteComponent' Text 

Instances

Instances details
ToJSON DeleteComponent Source # 
Instance details

Defined in Amazonka.Proton.DeleteComponent

ToHeaders DeleteComponent Source # 
Instance details

Defined in Amazonka.Proton.DeleteComponent

ToPath DeleteComponent Source # 
Instance details

Defined in Amazonka.Proton.DeleteComponent

ToQuery DeleteComponent Source # 
Instance details

Defined in Amazonka.Proton.DeleteComponent

AWSRequest DeleteComponent Source # 
Instance details

Defined in Amazonka.Proton.DeleteComponent

Associated Types

type AWSResponse DeleteComponent #

Generic DeleteComponent Source # 
Instance details

Defined in Amazonka.Proton.DeleteComponent

Associated Types

type Rep DeleteComponent :: Type -> Type #

Read DeleteComponent Source # 
Instance details

Defined in Amazonka.Proton.DeleteComponent

Show DeleteComponent Source # 
Instance details

Defined in Amazonka.Proton.DeleteComponent

NFData DeleteComponent Source # 
Instance details

Defined in Amazonka.Proton.DeleteComponent

Methods

rnf :: DeleteComponent -> () #

Eq DeleteComponent Source # 
Instance details

Defined in Amazonka.Proton.DeleteComponent

Hashable DeleteComponent Source # 
Instance details

Defined in Amazonka.Proton.DeleteComponent

type AWSResponse DeleteComponent Source # 
Instance details

Defined in Amazonka.Proton.DeleteComponent

type Rep DeleteComponent Source # 
Instance details

Defined in Amazonka.Proton.DeleteComponent

type Rep DeleteComponent = D1 ('MetaData "DeleteComponent" "Amazonka.Proton.DeleteComponent" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "DeleteComponent'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newDeleteComponent Source #

Create a value of DeleteComponent 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:

DeleteComponent, deleteComponent_name - The name of the component to delete.

data DeleteComponentResponse Source #

See: newDeleteComponentResponse smart constructor.

Instances

Instances details
Generic DeleteComponentResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteComponent

Associated Types

type Rep DeleteComponentResponse :: Type -> Type #

Show DeleteComponentResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteComponent

NFData DeleteComponentResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteComponent

Methods

rnf :: DeleteComponentResponse -> () #

Eq DeleteComponentResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteComponent

type Rep DeleteComponentResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteComponent

type Rep DeleteComponentResponse = D1 ('MetaData "DeleteComponentResponse" "Amazonka.Proton.DeleteComponent" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "DeleteComponentResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "component") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Component)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDeleteComponentResponse Source #

Create a value of DeleteComponentResponse 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:component:DeleteComponentResponse', deleteComponentResponse_component - The detailed data of the component being deleted.

$sel:httpStatus:DeleteComponentResponse', deleteComponentResponse_httpStatus - The response's http status code.

DeleteEnvironment

data DeleteEnvironment Source #

See: newDeleteEnvironment smart constructor.

Constructors

DeleteEnvironment' Text 

Instances

Instances details
ToJSON DeleteEnvironment Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironment

ToHeaders DeleteEnvironment Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironment

ToPath DeleteEnvironment Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironment

ToQuery DeleteEnvironment Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironment

AWSRequest DeleteEnvironment Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironment

Associated Types

type AWSResponse DeleteEnvironment #

Generic DeleteEnvironment Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironment

Associated Types

type Rep DeleteEnvironment :: Type -> Type #

Read DeleteEnvironment Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironment

Show DeleteEnvironment Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironment

NFData DeleteEnvironment Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironment

Methods

rnf :: DeleteEnvironment -> () #

Eq DeleteEnvironment Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironment

Hashable DeleteEnvironment Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironment

type AWSResponse DeleteEnvironment Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironment

type Rep DeleteEnvironment Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironment

type Rep DeleteEnvironment = D1 ('MetaData "DeleteEnvironment" "Amazonka.Proton.DeleteEnvironment" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "DeleteEnvironment'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newDeleteEnvironment Source #

Create a value of DeleteEnvironment 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:

DeleteEnvironment, deleteEnvironment_name - The name of the environment to delete.

data DeleteEnvironmentResponse Source #

See: newDeleteEnvironmentResponse smart constructor.

Instances

Instances details
Generic DeleteEnvironmentResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironment

Associated Types

type Rep DeleteEnvironmentResponse :: Type -> Type #

Show DeleteEnvironmentResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironment

NFData DeleteEnvironmentResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironment

Eq DeleteEnvironmentResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironment

type Rep DeleteEnvironmentResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironment

type Rep DeleteEnvironmentResponse = D1 ('MetaData "DeleteEnvironmentResponse" "Amazonka.Proton.DeleteEnvironment" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "DeleteEnvironmentResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "environment") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Environment)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDeleteEnvironmentResponse Source #

Create a value of DeleteEnvironmentResponse 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:environment:DeleteEnvironmentResponse', deleteEnvironmentResponse_environment - The detailed data of the environment being deleted.

$sel:httpStatus:DeleteEnvironmentResponse', deleteEnvironmentResponse_httpStatus - The response's http status code.

DeleteEnvironmentAccountConnection

data DeleteEnvironmentAccountConnection Source #

Instances

Instances details
ToJSON DeleteEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentAccountConnection

ToHeaders DeleteEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentAccountConnection

ToPath DeleteEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentAccountConnection

ToQuery DeleteEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentAccountConnection

AWSRequest DeleteEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentAccountConnection

Generic DeleteEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentAccountConnection

Associated Types

type Rep DeleteEnvironmentAccountConnection :: Type -> Type #

Read DeleteEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentAccountConnection

Show DeleteEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentAccountConnection

NFData DeleteEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentAccountConnection

Eq DeleteEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentAccountConnection

Hashable DeleteEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentAccountConnection

type AWSResponse DeleteEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentAccountConnection

type Rep DeleteEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentAccountConnection

type Rep DeleteEnvironmentAccountConnection = D1 ('MetaData "DeleteEnvironmentAccountConnection" "Amazonka.Proton.DeleteEnvironmentAccountConnection" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "DeleteEnvironmentAccountConnection'" 'PrefixI 'True) (S1 ('MetaSel ('Just "id") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newDeleteEnvironmentAccountConnection Source #

Create a value of DeleteEnvironmentAccountConnection 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:

DeleteEnvironmentAccountConnection, deleteEnvironmentAccountConnection_id - The ID of the environment account connection to delete.

data DeleteEnvironmentAccountConnectionResponse Source #

Instances

Instances details
Generic DeleteEnvironmentAccountConnectionResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentAccountConnection

Read DeleteEnvironmentAccountConnectionResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentAccountConnection

Show DeleteEnvironmentAccountConnectionResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentAccountConnection

NFData DeleteEnvironmentAccountConnectionResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentAccountConnection

Eq DeleteEnvironmentAccountConnectionResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentAccountConnection

type Rep DeleteEnvironmentAccountConnectionResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentAccountConnection

type Rep DeleteEnvironmentAccountConnectionResponse = D1 ('MetaData "DeleteEnvironmentAccountConnectionResponse" "Amazonka.Proton.DeleteEnvironmentAccountConnection" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "DeleteEnvironmentAccountConnectionResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "environmentAccountConnection") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe EnvironmentAccountConnection)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDeleteEnvironmentAccountConnectionResponse Source #

Create a value of DeleteEnvironmentAccountConnectionResponse 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:environmentAccountConnection:DeleteEnvironmentAccountConnectionResponse', deleteEnvironmentAccountConnectionResponse_environmentAccountConnection - The detailed data of the environment account connection being deleted.

$sel:httpStatus:DeleteEnvironmentAccountConnectionResponse', deleteEnvironmentAccountConnectionResponse_httpStatus - The response's http status code.

DeleteEnvironmentTemplate

data DeleteEnvironmentTemplate Source #

See: newDeleteEnvironmentTemplate smart constructor.

Instances

Instances details
ToJSON DeleteEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentTemplate

ToHeaders DeleteEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentTemplate

ToPath DeleteEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentTemplate

ToQuery DeleteEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentTemplate

AWSRequest DeleteEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentTemplate

Generic DeleteEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentTemplate

Associated Types

type Rep DeleteEnvironmentTemplate :: Type -> Type #

Read DeleteEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentTemplate

Show DeleteEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentTemplate

NFData DeleteEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentTemplate

Eq DeleteEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentTemplate

Hashable DeleteEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentTemplate

type AWSResponse DeleteEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentTemplate

type Rep DeleteEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentTemplate

type Rep DeleteEnvironmentTemplate = D1 ('MetaData "DeleteEnvironmentTemplate" "Amazonka.Proton.DeleteEnvironmentTemplate" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "DeleteEnvironmentTemplate'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newDeleteEnvironmentTemplate Source #

Create a value of DeleteEnvironmentTemplate 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:

DeleteEnvironmentTemplate, deleteEnvironmentTemplate_name - The name of the environment template to delete.

data DeleteEnvironmentTemplateResponse Source #

See: newDeleteEnvironmentTemplateResponse smart constructor.

Instances

Instances details
Generic DeleteEnvironmentTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentTemplate

Associated Types

type Rep DeleteEnvironmentTemplateResponse :: Type -> Type #

Show DeleteEnvironmentTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentTemplate

NFData DeleteEnvironmentTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentTemplate

Eq DeleteEnvironmentTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentTemplate

type Rep DeleteEnvironmentTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentTemplate

type Rep DeleteEnvironmentTemplateResponse = D1 ('MetaData "DeleteEnvironmentTemplateResponse" "Amazonka.Proton.DeleteEnvironmentTemplate" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "DeleteEnvironmentTemplateResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "environmentTemplate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe EnvironmentTemplate)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDeleteEnvironmentTemplateResponse Source #

Create a value of DeleteEnvironmentTemplateResponse 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:environmentTemplate:DeleteEnvironmentTemplateResponse', deleteEnvironmentTemplateResponse_environmentTemplate - The detailed data of the environment template being deleted.

$sel:httpStatus:DeleteEnvironmentTemplateResponse', deleteEnvironmentTemplateResponse_httpStatus - The response's http status code.

DeleteEnvironmentTemplateVersion

data DeleteEnvironmentTemplateVersion Source #

See: newDeleteEnvironmentTemplateVersion smart constructor.

Instances

Instances details
ToJSON DeleteEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentTemplateVersion

ToHeaders DeleteEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentTemplateVersion

ToPath DeleteEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentTemplateVersion

ToQuery DeleteEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentTemplateVersion

AWSRequest DeleteEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentTemplateVersion

Generic DeleteEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentTemplateVersion

Associated Types

type Rep DeleteEnvironmentTemplateVersion :: Type -> Type #

Read DeleteEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentTemplateVersion

Show DeleteEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentTemplateVersion

NFData DeleteEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentTemplateVersion

Eq DeleteEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentTemplateVersion

Hashable DeleteEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentTemplateVersion

type AWSResponse DeleteEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentTemplateVersion

type Rep DeleteEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentTemplateVersion

type Rep DeleteEnvironmentTemplateVersion = D1 ('MetaData "DeleteEnvironmentTemplateVersion" "Amazonka.Proton.DeleteEnvironmentTemplateVersion" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "DeleteEnvironmentTemplateVersion'" 'PrefixI 'True) (S1 ('MetaSel ('Just "majorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "minorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "templateName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newDeleteEnvironmentTemplateVersion Source #

Create a value of DeleteEnvironmentTemplateVersion 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:

DeleteEnvironmentTemplateVersion, deleteEnvironmentTemplateVersion_majorVersion - The environment template major version to delete.

DeleteEnvironmentTemplateVersion, deleteEnvironmentTemplateVersion_minorVersion - The environment template minor version to delete.

DeleteEnvironmentTemplateVersion, deleteEnvironmentTemplateVersion_templateName - The name of the environment template.

data DeleteEnvironmentTemplateVersionResponse Source #

Instances

Instances details
Generic DeleteEnvironmentTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentTemplateVersion

Show DeleteEnvironmentTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentTemplateVersion

NFData DeleteEnvironmentTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentTemplateVersion

Eq DeleteEnvironmentTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentTemplateVersion

type Rep DeleteEnvironmentTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteEnvironmentTemplateVersion

type Rep DeleteEnvironmentTemplateVersionResponse = D1 ('MetaData "DeleteEnvironmentTemplateVersionResponse" "Amazonka.Proton.DeleteEnvironmentTemplateVersion" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "DeleteEnvironmentTemplateVersionResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "environmentTemplateVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe EnvironmentTemplateVersion)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDeleteEnvironmentTemplateVersionResponse Source #

Create a value of DeleteEnvironmentTemplateVersionResponse 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:environmentTemplateVersion:DeleteEnvironmentTemplateVersionResponse', deleteEnvironmentTemplateVersionResponse_environmentTemplateVersion - The detailed data of the environment template version being deleted.

$sel:httpStatus:DeleteEnvironmentTemplateVersionResponse', deleteEnvironmentTemplateVersionResponse_httpStatus - The response's http status code.

DeleteRepository

data DeleteRepository Source #

See: newDeleteRepository smart constructor.

Instances

Instances details
ToJSON DeleteRepository Source # 
Instance details

Defined in Amazonka.Proton.DeleteRepository

ToHeaders DeleteRepository Source # 
Instance details

Defined in Amazonka.Proton.DeleteRepository

ToPath DeleteRepository Source # 
Instance details

Defined in Amazonka.Proton.DeleteRepository

ToQuery DeleteRepository Source # 
Instance details

Defined in Amazonka.Proton.DeleteRepository

AWSRequest DeleteRepository Source # 
Instance details

Defined in Amazonka.Proton.DeleteRepository

Associated Types

type AWSResponse DeleteRepository #

Generic DeleteRepository Source # 
Instance details

Defined in Amazonka.Proton.DeleteRepository

Associated Types

type Rep DeleteRepository :: Type -> Type #

Read DeleteRepository Source # 
Instance details

Defined in Amazonka.Proton.DeleteRepository

Show DeleteRepository Source # 
Instance details

Defined in Amazonka.Proton.DeleteRepository

NFData DeleteRepository Source # 
Instance details

Defined in Amazonka.Proton.DeleteRepository

Methods

rnf :: DeleteRepository -> () #

Eq DeleteRepository Source # 
Instance details

Defined in Amazonka.Proton.DeleteRepository

Hashable DeleteRepository Source # 
Instance details

Defined in Amazonka.Proton.DeleteRepository

type AWSResponse DeleteRepository Source # 
Instance details

Defined in Amazonka.Proton.DeleteRepository

type Rep DeleteRepository Source # 
Instance details

Defined in Amazonka.Proton.DeleteRepository

type Rep DeleteRepository = D1 ('MetaData "DeleteRepository" "Amazonka.Proton.DeleteRepository" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "DeleteRepository'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "provider") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 RepositoryProvider)))

newDeleteRepository Source #

Create a value of DeleteRepository 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:

DeleteRepository, deleteRepository_name - The repository name.

DeleteRepository, deleteRepository_provider - The repository provider.

data DeleteRepositoryResponse Source #

See: newDeleteRepositoryResponse smart constructor.

Instances

Instances details
Generic DeleteRepositoryResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteRepository

Associated Types

type Rep DeleteRepositoryResponse :: Type -> Type #

Read DeleteRepositoryResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteRepository

Show DeleteRepositoryResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteRepository

NFData DeleteRepositoryResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteRepository

Eq DeleteRepositoryResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteRepository

type Rep DeleteRepositoryResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteRepository

type Rep DeleteRepositoryResponse = D1 ('MetaData "DeleteRepositoryResponse" "Amazonka.Proton.DeleteRepository" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "DeleteRepositoryResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "repository") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Repository)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDeleteRepositoryResponse Source #

Create a value of DeleteRepositoryResponse 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:repository:DeleteRepositoryResponse', deleteRepositoryResponse_repository - The deleted repository link's detail data that's returned by Proton.

$sel:httpStatus:DeleteRepositoryResponse', deleteRepositoryResponse_httpStatus - The response's http status code.

DeleteService

data DeleteService Source #

See: newDeleteService smart constructor.

Constructors

DeleteService' Text 

Instances

Instances details
ToJSON DeleteService Source # 
Instance details

Defined in Amazonka.Proton.DeleteService

ToHeaders DeleteService Source # 
Instance details

Defined in Amazonka.Proton.DeleteService

ToPath DeleteService Source # 
Instance details

Defined in Amazonka.Proton.DeleteService

ToQuery DeleteService Source # 
Instance details

Defined in Amazonka.Proton.DeleteService

AWSRequest DeleteService Source # 
Instance details

Defined in Amazonka.Proton.DeleteService

Associated Types

type AWSResponse DeleteService #

Generic DeleteService Source # 
Instance details

Defined in Amazonka.Proton.DeleteService

Associated Types

type Rep DeleteService :: Type -> Type #

Read DeleteService Source # 
Instance details

Defined in Amazonka.Proton.DeleteService

Show DeleteService Source # 
Instance details

Defined in Amazonka.Proton.DeleteService

NFData DeleteService Source # 
Instance details

Defined in Amazonka.Proton.DeleteService

Methods

rnf :: DeleteService -> () #

Eq DeleteService Source # 
Instance details

Defined in Amazonka.Proton.DeleteService

Hashable DeleteService Source # 
Instance details

Defined in Amazonka.Proton.DeleteService

type AWSResponse DeleteService Source # 
Instance details

Defined in Amazonka.Proton.DeleteService

type Rep DeleteService Source # 
Instance details

Defined in Amazonka.Proton.DeleteService

type Rep DeleteService = D1 ('MetaData "DeleteService" "Amazonka.Proton.DeleteService" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "DeleteService'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newDeleteService Source #

Create a value of DeleteService 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:

DeleteService, deleteService_name - The name of the service to delete.

data DeleteServiceResponse Source #

See: newDeleteServiceResponse smart constructor.

newDeleteServiceResponse Source #

Create a value of DeleteServiceResponse 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:service:DeleteServiceResponse', deleteServiceResponse_service - The detailed data of the service being deleted.

$sel:httpStatus:DeleteServiceResponse', deleteServiceResponse_httpStatus - The response's http status code.

DeleteServiceTemplate

data DeleteServiceTemplate Source #

See: newDeleteServiceTemplate smart constructor.

Instances

Instances details
ToJSON DeleteServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.DeleteServiceTemplate

ToHeaders DeleteServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.DeleteServiceTemplate

ToPath DeleteServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.DeleteServiceTemplate

ToQuery DeleteServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.DeleteServiceTemplate

AWSRequest DeleteServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.DeleteServiceTemplate

Associated Types

type AWSResponse DeleteServiceTemplate #

Generic DeleteServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.DeleteServiceTemplate

Associated Types

type Rep DeleteServiceTemplate :: Type -> Type #

Read DeleteServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.DeleteServiceTemplate

Show DeleteServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.DeleteServiceTemplate

NFData DeleteServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.DeleteServiceTemplate

Methods

rnf :: DeleteServiceTemplate -> () #

Eq DeleteServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.DeleteServiceTemplate

Hashable DeleteServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.DeleteServiceTemplate

type AWSResponse DeleteServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.DeleteServiceTemplate

type Rep DeleteServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.DeleteServiceTemplate

type Rep DeleteServiceTemplate = D1 ('MetaData "DeleteServiceTemplate" "Amazonka.Proton.DeleteServiceTemplate" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "DeleteServiceTemplate'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newDeleteServiceTemplate Source #

Create a value of DeleteServiceTemplate 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:

DeleteServiceTemplate, deleteServiceTemplate_name - The name of the service template to delete.

data DeleteServiceTemplateResponse Source #

See: newDeleteServiceTemplateResponse smart constructor.

Instances

Instances details
Generic DeleteServiceTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteServiceTemplate

Associated Types

type Rep DeleteServiceTemplateResponse :: Type -> Type #

Show DeleteServiceTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteServiceTemplate

NFData DeleteServiceTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteServiceTemplate

Eq DeleteServiceTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteServiceTemplate

type Rep DeleteServiceTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteServiceTemplate

type Rep DeleteServiceTemplateResponse = D1 ('MetaData "DeleteServiceTemplateResponse" "Amazonka.Proton.DeleteServiceTemplate" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "DeleteServiceTemplateResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "serviceTemplate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ServiceTemplate)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDeleteServiceTemplateResponse Source #

Create a value of DeleteServiceTemplateResponse 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:serviceTemplate:DeleteServiceTemplateResponse', deleteServiceTemplateResponse_serviceTemplate - The detailed data of the service template being deleted.

$sel:httpStatus:DeleteServiceTemplateResponse', deleteServiceTemplateResponse_httpStatus - The response's http status code.

DeleteServiceTemplateVersion

data DeleteServiceTemplateVersion Source #

See: newDeleteServiceTemplateVersion smart constructor.

Instances

Instances details
ToJSON DeleteServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.DeleteServiceTemplateVersion

ToHeaders DeleteServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.DeleteServiceTemplateVersion

ToPath DeleteServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.DeleteServiceTemplateVersion

ToQuery DeleteServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.DeleteServiceTemplateVersion

AWSRequest DeleteServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.DeleteServiceTemplateVersion

Generic DeleteServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.DeleteServiceTemplateVersion

Associated Types

type Rep DeleteServiceTemplateVersion :: Type -> Type #

Read DeleteServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.DeleteServiceTemplateVersion

Show DeleteServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.DeleteServiceTemplateVersion

NFData DeleteServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.DeleteServiceTemplateVersion

Eq DeleteServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.DeleteServiceTemplateVersion

Hashable DeleteServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.DeleteServiceTemplateVersion

type AWSResponse DeleteServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.DeleteServiceTemplateVersion

type Rep DeleteServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.DeleteServiceTemplateVersion

type Rep DeleteServiceTemplateVersion = D1 ('MetaData "DeleteServiceTemplateVersion" "Amazonka.Proton.DeleteServiceTemplateVersion" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "DeleteServiceTemplateVersion'" 'PrefixI 'True) (S1 ('MetaSel ('Just "majorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "minorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "templateName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newDeleteServiceTemplateVersion Source #

Create a value of DeleteServiceTemplateVersion 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:

DeleteServiceTemplateVersion, deleteServiceTemplateVersion_majorVersion - The service template major version to delete.

DeleteServiceTemplateVersion, deleteServiceTemplateVersion_minorVersion - The service template minor version to delete.

DeleteServiceTemplateVersion, deleteServiceTemplateVersion_templateName - The name of the service template.

data DeleteServiceTemplateVersionResponse Source #

Instances

Instances details
Generic DeleteServiceTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteServiceTemplateVersion

Show DeleteServiceTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteServiceTemplateVersion

NFData DeleteServiceTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteServiceTemplateVersion

Eq DeleteServiceTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteServiceTemplateVersion

type Rep DeleteServiceTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteServiceTemplateVersion

type Rep DeleteServiceTemplateVersionResponse = D1 ('MetaData "DeleteServiceTemplateVersionResponse" "Amazonka.Proton.DeleteServiceTemplateVersion" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "DeleteServiceTemplateVersionResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "serviceTemplateVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ServiceTemplateVersion)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDeleteServiceTemplateVersionResponse Source #

Create a value of DeleteServiceTemplateVersionResponse 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:serviceTemplateVersion:DeleteServiceTemplateVersionResponse', deleteServiceTemplateVersionResponse_serviceTemplateVersion - The detailed data of the service template version being deleted.

$sel:httpStatus:DeleteServiceTemplateVersionResponse', deleteServiceTemplateVersionResponse_httpStatus - The response's http status code.

DeleteTemplateSyncConfig

data DeleteTemplateSyncConfig Source #

See: newDeleteTemplateSyncConfig smart constructor.

Instances

Instances details
ToJSON DeleteTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.DeleteTemplateSyncConfig

ToHeaders DeleteTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.DeleteTemplateSyncConfig

ToPath DeleteTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.DeleteTemplateSyncConfig

ToQuery DeleteTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.DeleteTemplateSyncConfig

AWSRequest DeleteTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.DeleteTemplateSyncConfig

Generic DeleteTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.DeleteTemplateSyncConfig

Associated Types

type Rep DeleteTemplateSyncConfig :: Type -> Type #

Read DeleteTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.DeleteTemplateSyncConfig

Show DeleteTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.DeleteTemplateSyncConfig

NFData DeleteTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.DeleteTemplateSyncConfig

Eq DeleteTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.DeleteTemplateSyncConfig

Hashable DeleteTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.DeleteTemplateSyncConfig

type AWSResponse DeleteTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.DeleteTemplateSyncConfig

type Rep DeleteTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.DeleteTemplateSyncConfig

type Rep DeleteTemplateSyncConfig = D1 ('MetaData "DeleteTemplateSyncConfig" "Amazonka.Proton.DeleteTemplateSyncConfig" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "DeleteTemplateSyncConfig'" 'PrefixI 'True) (S1 ('MetaSel ('Just "templateName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "templateType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 TemplateType)))

newDeleteTemplateSyncConfig Source #

Create a value of DeleteTemplateSyncConfig 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:

DeleteTemplateSyncConfig, deleteTemplateSyncConfig_templateName - The template name.

DeleteTemplateSyncConfig, deleteTemplateSyncConfig_templateType - The template type.

data DeleteTemplateSyncConfigResponse Source #

See: newDeleteTemplateSyncConfigResponse smart constructor.

Instances

Instances details
Generic DeleteTemplateSyncConfigResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteTemplateSyncConfig

Associated Types

type Rep DeleteTemplateSyncConfigResponse :: Type -> Type #

Read DeleteTemplateSyncConfigResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteTemplateSyncConfig

Show DeleteTemplateSyncConfigResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteTemplateSyncConfig

NFData DeleteTemplateSyncConfigResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteTemplateSyncConfig

Eq DeleteTemplateSyncConfigResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteTemplateSyncConfig

type Rep DeleteTemplateSyncConfigResponse Source # 
Instance details

Defined in Amazonka.Proton.DeleteTemplateSyncConfig

type Rep DeleteTemplateSyncConfigResponse = D1 ('MetaData "DeleteTemplateSyncConfigResponse" "Amazonka.Proton.DeleteTemplateSyncConfig" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "DeleteTemplateSyncConfigResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "templateSyncConfig") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe TemplateSyncConfig)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDeleteTemplateSyncConfigResponse Source #

Create a value of DeleteTemplateSyncConfigResponse 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:templateSyncConfig:DeleteTemplateSyncConfigResponse', deleteTemplateSyncConfigResponse_templateSyncConfig - The template sync configuration detail data that's returned by Proton.

$sel:httpStatus:DeleteTemplateSyncConfigResponse', deleteTemplateSyncConfigResponse_httpStatus - The response's http status code.

GetAccountSettings

data GetAccountSettings Source #

See: newGetAccountSettings smart constructor.

Constructors

GetAccountSettings' 

Instances

Instances details
ToJSON GetAccountSettings Source # 
Instance details

Defined in Amazonka.Proton.GetAccountSettings

ToHeaders GetAccountSettings Source # 
Instance details

Defined in Amazonka.Proton.GetAccountSettings

ToPath GetAccountSettings Source # 
Instance details

Defined in Amazonka.Proton.GetAccountSettings

ToQuery GetAccountSettings Source # 
Instance details

Defined in Amazonka.Proton.GetAccountSettings

AWSRequest GetAccountSettings Source # 
Instance details

Defined in Amazonka.Proton.GetAccountSettings

Associated Types

type AWSResponse GetAccountSettings #

Generic GetAccountSettings Source # 
Instance details

Defined in Amazonka.Proton.GetAccountSettings

Associated Types

type Rep GetAccountSettings :: Type -> Type #

Read GetAccountSettings Source # 
Instance details

Defined in Amazonka.Proton.GetAccountSettings

Show GetAccountSettings Source # 
Instance details

Defined in Amazonka.Proton.GetAccountSettings

NFData GetAccountSettings Source # 
Instance details

Defined in Amazonka.Proton.GetAccountSettings

Methods

rnf :: GetAccountSettings -> () #

Eq GetAccountSettings Source # 
Instance details

Defined in Amazonka.Proton.GetAccountSettings

Hashable GetAccountSettings Source # 
Instance details

Defined in Amazonka.Proton.GetAccountSettings

type AWSResponse GetAccountSettings Source # 
Instance details

Defined in Amazonka.Proton.GetAccountSettings

type Rep GetAccountSettings Source # 
Instance details

Defined in Amazonka.Proton.GetAccountSettings

type Rep GetAccountSettings = D1 ('MetaData "GetAccountSettings" "Amazonka.Proton.GetAccountSettings" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "GetAccountSettings'" 'PrefixI 'False) (U1 :: Type -> Type))

newGetAccountSettings :: GetAccountSettings Source #

Create a value of GetAccountSettings with all optional fields omitted.

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

data GetAccountSettingsResponse Source #

See: newGetAccountSettingsResponse smart constructor.

Instances

Instances details
Generic GetAccountSettingsResponse Source # 
Instance details

Defined in Amazonka.Proton.GetAccountSettings

Associated Types

type Rep GetAccountSettingsResponse :: Type -> Type #

Read GetAccountSettingsResponse Source # 
Instance details

Defined in Amazonka.Proton.GetAccountSettings

Show GetAccountSettingsResponse Source # 
Instance details

Defined in Amazonka.Proton.GetAccountSettings

NFData GetAccountSettingsResponse Source # 
Instance details

Defined in Amazonka.Proton.GetAccountSettings

Eq GetAccountSettingsResponse Source # 
Instance details

Defined in Amazonka.Proton.GetAccountSettings

type Rep GetAccountSettingsResponse Source # 
Instance details

Defined in Amazonka.Proton.GetAccountSettings

type Rep GetAccountSettingsResponse = D1 ('MetaData "GetAccountSettingsResponse" "Amazonka.Proton.GetAccountSettings" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "GetAccountSettingsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "accountSettings") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe AccountSettings)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newGetAccountSettingsResponse Source #

Create a value of GetAccountSettingsResponse 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:accountSettings:GetAccountSettingsResponse', getAccountSettingsResponse_accountSettings - The Proton pipeline service role detail data that's returned by Proton.

$sel:httpStatus:GetAccountSettingsResponse', getAccountSettingsResponse_httpStatus - The response's http status code.

GetComponent

data GetComponent Source #

See: newGetComponent smart constructor.

Constructors

GetComponent' Text 

Instances

Instances details
ToJSON GetComponent Source # 
Instance details

Defined in Amazonka.Proton.GetComponent

ToHeaders GetComponent Source # 
Instance details

Defined in Amazonka.Proton.GetComponent

ToPath GetComponent Source # 
Instance details

Defined in Amazonka.Proton.GetComponent

ToQuery GetComponent Source # 
Instance details

Defined in Amazonka.Proton.GetComponent

AWSRequest GetComponent Source # 
Instance details

Defined in Amazonka.Proton.GetComponent

Associated Types

type AWSResponse GetComponent #

Generic GetComponent Source # 
Instance details

Defined in Amazonka.Proton.GetComponent

Associated Types

type Rep GetComponent :: Type -> Type #

Read GetComponent Source # 
Instance details

Defined in Amazonka.Proton.GetComponent

Show GetComponent Source # 
Instance details

Defined in Amazonka.Proton.GetComponent

NFData GetComponent Source # 
Instance details

Defined in Amazonka.Proton.GetComponent

Methods

rnf :: GetComponent -> () #

Eq GetComponent Source # 
Instance details

Defined in Amazonka.Proton.GetComponent

Hashable GetComponent Source # 
Instance details

Defined in Amazonka.Proton.GetComponent

type AWSResponse GetComponent Source # 
Instance details

Defined in Amazonka.Proton.GetComponent

type Rep GetComponent Source # 
Instance details

Defined in Amazonka.Proton.GetComponent

type Rep GetComponent = D1 ('MetaData "GetComponent" "Amazonka.Proton.GetComponent" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "GetComponent'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newGetComponent Source #

Create a value of GetComponent 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:

GetComponent, getComponent_name - The name of the component that you want to get the detailed data for.

data GetComponentResponse Source #

See: newGetComponentResponse smart constructor.

newGetComponentResponse Source #

Create a value of GetComponentResponse 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:component:GetComponentResponse', getComponentResponse_component - The detailed data of the requested component.

$sel:httpStatus:GetComponentResponse', getComponentResponse_httpStatus - The response's http status code.

GetEnvironment

data GetEnvironment Source #

See: newGetEnvironment smart constructor.

Constructors

GetEnvironment' Text 

Instances

Instances details
ToJSON GetEnvironment Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironment

ToHeaders GetEnvironment Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironment

ToPath GetEnvironment Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironment

ToQuery GetEnvironment Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironment

AWSRequest GetEnvironment Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironment

Associated Types

type AWSResponse GetEnvironment #

Generic GetEnvironment Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironment

Associated Types

type Rep GetEnvironment :: Type -> Type #

Read GetEnvironment Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironment

Show GetEnvironment Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironment

NFData GetEnvironment Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironment

Methods

rnf :: GetEnvironment -> () #

Eq GetEnvironment Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironment

Hashable GetEnvironment Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironment

type AWSResponse GetEnvironment Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironment

type Rep GetEnvironment Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironment

type Rep GetEnvironment = D1 ('MetaData "GetEnvironment" "Amazonka.Proton.GetEnvironment" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "GetEnvironment'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newGetEnvironment Source #

Create a value of GetEnvironment 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:

GetEnvironment, getEnvironment_name - The name of the environment that you want to get the detailed data for.

data GetEnvironmentResponse Source #

See: newGetEnvironmentResponse smart constructor.

newGetEnvironmentResponse Source #

Create a value of GetEnvironmentResponse 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:httpStatus:GetEnvironmentResponse', getEnvironmentResponse_httpStatus - The response's http status code.

$sel:environment:GetEnvironmentResponse', getEnvironmentResponse_environment - The detailed data of the requested environment.

GetEnvironmentAccountConnection

data GetEnvironmentAccountConnection Source #

See: newGetEnvironmentAccountConnection smart constructor.

Instances

Instances details
ToJSON GetEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentAccountConnection

ToHeaders GetEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentAccountConnection

ToPath GetEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentAccountConnection

ToQuery GetEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentAccountConnection

AWSRequest GetEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentAccountConnection

Generic GetEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentAccountConnection

Associated Types

type Rep GetEnvironmentAccountConnection :: Type -> Type #

Read GetEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentAccountConnection

Show GetEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentAccountConnection

NFData GetEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentAccountConnection

Eq GetEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentAccountConnection

Hashable GetEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentAccountConnection

type AWSResponse GetEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentAccountConnection

type Rep GetEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentAccountConnection

type Rep GetEnvironmentAccountConnection = D1 ('MetaData "GetEnvironmentAccountConnection" "Amazonka.Proton.GetEnvironmentAccountConnection" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "GetEnvironmentAccountConnection'" 'PrefixI 'True) (S1 ('MetaSel ('Just "id") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newGetEnvironmentAccountConnection Source #

Create a value of GetEnvironmentAccountConnection 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:

GetEnvironmentAccountConnection, getEnvironmentAccountConnection_id - The ID of the environment account connection that you want to get the detailed data for.

data GetEnvironmentAccountConnectionResponse Source #

Instances

Instances details
Generic GetEnvironmentAccountConnectionResponse Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentAccountConnection

Read GetEnvironmentAccountConnectionResponse Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentAccountConnection

Show GetEnvironmentAccountConnectionResponse Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentAccountConnection

NFData GetEnvironmentAccountConnectionResponse Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentAccountConnection

Eq GetEnvironmentAccountConnectionResponse Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentAccountConnection

type Rep GetEnvironmentAccountConnectionResponse Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentAccountConnection

type Rep GetEnvironmentAccountConnectionResponse = D1 ('MetaData "GetEnvironmentAccountConnectionResponse" "Amazonka.Proton.GetEnvironmentAccountConnection" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "GetEnvironmentAccountConnectionResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "environmentAccountConnection") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 EnvironmentAccountConnection)))

GetEnvironmentTemplate

data GetEnvironmentTemplate Source #

See: newGetEnvironmentTemplate smart constructor.

Instances

Instances details
ToJSON GetEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentTemplate

ToHeaders GetEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentTemplate

ToPath GetEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentTemplate

ToQuery GetEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentTemplate

AWSRequest GetEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentTemplate

Associated Types

type AWSResponse GetEnvironmentTemplate #

Generic GetEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentTemplate

Associated Types

type Rep GetEnvironmentTemplate :: Type -> Type #

Read GetEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentTemplate

Show GetEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentTemplate

NFData GetEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentTemplate

Methods

rnf :: GetEnvironmentTemplate -> () #

Eq GetEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentTemplate

Hashable GetEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentTemplate

type AWSResponse GetEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentTemplate

type Rep GetEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentTemplate

type Rep GetEnvironmentTemplate = D1 ('MetaData "GetEnvironmentTemplate" "Amazonka.Proton.GetEnvironmentTemplate" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "GetEnvironmentTemplate'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newGetEnvironmentTemplate Source #

Create a value of GetEnvironmentTemplate 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:

GetEnvironmentTemplate, getEnvironmentTemplate_name - The name of the environment template that you want to get the detailed data for.

data GetEnvironmentTemplateResponse Source #

See: newGetEnvironmentTemplateResponse smart constructor.

Instances

Instances details
Generic GetEnvironmentTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentTemplate

Associated Types

type Rep GetEnvironmentTemplateResponse :: Type -> Type #

Show GetEnvironmentTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentTemplate

NFData GetEnvironmentTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentTemplate

Eq GetEnvironmentTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentTemplate

type Rep GetEnvironmentTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentTemplate

type Rep GetEnvironmentTemplateResponse = D1 ('MetaData "GetEnvironmentTemplateResponse" "Amazonka.Proton.GetEnvironmentTemplate" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "GetEnvironmentTemplateResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "environmentTemplate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 EnvironmentTemplate)))

newGetEnvironmentTemplateResponse Source #

Create a value of GetEnvironmentTemplateResponse 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:httpStatus:GetEnvironmentTemplateResponse', getEnvironmentTemplateResponse_httpStatus - The response's http status code.

$sel:environmentTemplate:GetEnvironmentTemplateResponse', getEnvironmentTemplateResponse_environmentTemplate - The detailed data of the requested environment template.

GetEnvironmentTemplateVersion

data GetEnvironmentTemplateVersion Source #

See: newGetEnvironmentTemplateVersion smart constructor.

Instances

Instances details
ToJSON GetEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentTemplateVersion

ToHeaders GetEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentTemplateVersion

ToPath GetEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentTemplateVersion

ToQuery GetEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentTemplateVersion

AWSRequest GetEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentTemplateVersion

Generic GetEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentTemplateVersion

Associated Types

type Rep GetEnvironmentTemplateVersion :: Type -> Type #

Read GetEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentTemplateVersion

Show GetEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentTemplateVersion

NFData GetEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentTemplateVersion

Eq GetEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentTemplateVersion

Hashable GetEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentTemplateVersion

type AWSResponse GetEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentTemplateVersion

type Rep GetEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentTemplateVersion

type Rep GetEnvironmentTemplateVersion = D1 ('MetaData "GetEnvironmentTemplateVersion" "Amazonka.Proton.GetEnvironmentTemplateVersion" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "GetEnvironmentTemplateVersion'" 'PrefixI 'True) (S1 ('MetaSel ('Just "majorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "minorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "templateName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newGetEnvironmentTemplateVersion Source #

Create a value of GetEnvironmentTemplateVersion 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:

GetEnvironmentTemplateVersion, getEnvironmentTemplateVersion_majorVersion - To get environment template major version detail data, include major Version.

GetEnvironmentTemplateVersion, getEnvironmentTemplateVersion_minorVersion - To get environment template minor version detail data, include minorVersion.

GetEnvironmentTemplateVersion, getEnvironmentTemplateVersion_templateName - The name of the environment template a version of which you want to get detailed data for.

data GetEnvironmentTemplateVersionResponse Source #

Instances

Instances details
Generic GetEnvironmentTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentTemplateVersion

Show GetEnvironmentTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentTemplateVersion

NFData GetEnvironmentTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentTemplateVersion

Eq GetEnvironmentTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentTemplateVersion

type Rep GetEnvironmentTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.GetEnvironmentTemplateVersion

type Rep GetEnvironmentTemplateVersionResponse = D1 ('MetaData "GetEnvironmentTemplateVersionResponse" "Amazonka.Proton.GetEnvironmentTemplateVersion" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "GetEnvironmentTemplateVersionResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "environmentTemplateVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 EnvironmentTemplateVersion)))

GetRepository

data GetRepository Source #

See: newGetRepository smart constructor.

Instances

Instances details
ToJSON GetRepository Source # 
Instance details

Defined in Amazonka.Proton.GetRepository

ToHeaders GetRepository Source # 
Instance details

Defined in Amazonka.Proton.GetRepository

ToPath GetRepository Source # 
Instance details

Defined in Amazonka.Proton.GetRepository

ToQuery GetRepository Source # 
Instance details

Defined in Amazonka.Proton.GetRepository

AWSRequest GetRepository Source # 
Instance details

Defined in Amazonka.Proton.GetRepository

Associated Types

type AWSResponse GetRepository #

Generic GetRepository Source # 
Instance details

Defined in Amazonka.Proton.GetRepository

Associated Types

type Rep GetRepository :: Type -> Type #

Read GetRepository Source # 
Instance details

Defined in Amazonka.Proton.GetRepository

Show GetRepository Source # 
Instance details

Defined in Amazonka.Proton.GetRepository

NFData GetRepository Source # 
Instance details

Defined in Amazonka.Proton.GetRepository

Methods

rnf :: GetRepository -> () #

Eq GetRepository Source # 
Instance details

Defined in Amazonka.Proton.GetRepository

Hashable GetRepository Source # 
Instance details

Defined in Amazonka.Proton.GetRepository

type AWSResponse GetRepository Source # 
Instance details

Defined in Amazonka.Proton.GetRepository

type Rep GetRepository Source # 
Instance details

Defined in Amazonka.Proton.GetRepository

type Rep GetRepository = D1 ('MetaData "GetRepository" "Amazonka.Proton.GetRepository" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "GetRepository'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "provider") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 RepositoryProvider)))

newGetRepository Source #

Create a value of GetRepository 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:

GetRepository, getRepository_name - The repository name, for example myrepos/myrepo.

GetRepository, getRepository_provider - The repository provider.

data GetRepositoryResponse Source #

See: newGetRepositoryResponse smart constructor.

Instances

Instances details
Generic GetRepositoryResponse Source # 
Instance details

Defined in Amazonka.Proton.GetRepository

Associated Types

type Rep GetRepositoryResponse :: Type -> Type #

Read GetRepositoryResponse Source # 
Instance details

Defined in Amazonka.Proton.GetRepository

Show GetRepositoryResponse Source # 
Instance details

Defined in Amazonka.Proton.GetRepository

NFData GetRepositoryResponse Source # 
Instance details

Defined in Amazonka.Proton.GetRepository

Methods

rnf :: GetRepositoryResponse -> () #

Eq GetRepositoryResponse Source # 
Instance details

Defined in Amazonka.Proton.GetRepository

type Rep GetRepositoryResponse Source # 
Instance details

Defined in Amazonka.Proton.GetRepository

type Rep GetRepositoryResponse = D1 ('MetaData "GetRepositoryResponse" "Amazonka.Proton.GetRepository" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "GetRepositoryResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "repository") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Repository)))

newGetRepositoryResponse Source #

Create a value of GetRepositoryResponse 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:httpStatus:GetRepositoryResponse', getRepositoryResponse_httpStatus - The response's http status code.

$sel:repository:GetRepositoryResponse', getRepositoryResponse_repository - The repository link's detail data that's returned by Proton.

GetRepositorySyncStatus

data GetRepositorySyncStatus Source #

See: newGetRepositorySyncStatus smart constructor.

Instances

Instances details
ToJSON GetRepositorySyncStatus Source # 
Instance details

Defined in Amazonka.Proton.GetRepositorySyncStatus

ToHeaders GetRepositorySyncStatus Source # 
Instance details

Defined in Amazonka.Proton.GetRepositorySyncStatus

ToPath GetRepositorySyncStatus Source # 
Instance details

Defined in Amazonka.Proton.GetRepositorySyncStatus

ToQuery GetRepositorySyncStatus Source # 
Instance details

Defined in Amazonka.Proton.GetRepositorySyncStatus

AWSRequest GetRepositorySyncStatus Source # 
Instance details

Defined in Amazonka.Proton.GetRepositorySyncStatus

Generic GetRepositorySyncStatus Source # 
Instance details

Defined in Amazonka.Proton.GetRepositorySyncStatus

Associated Types

type Rep GetRepositorySyncStatus :: Type -> Type #

Read GetRepositorySyncStatus Source # 
Instance details

Defined in Amazonka.Proton.GetRepositorySyncStatus

Show GetRepositorySyncStatus Source # 
Instance details

Defined in Amazonka.Proton.GetRepositorySyncStatus

NFData GetRepositorySyncStatus Source # 
Instance details

Defined in Amazonka.Proton.GetRepositorySyncStatus

Methods

rnf :: GetRepositorySyncStatus -> () #

Eq GetRepositorySyncStatus Source # 
Instance details

Defined in Amazonka.Proton.GetRepositorySyncStatus

Hashable GetRepositorySyncStatus Source # 
Instance details

Defined in Amazonka.Proton.GetRepositorySyncStatus

type AWSResponse GetRepositorySyncStatus Source # 
Instance details

Defined in Amazonka.Proton.GetRepositorySyncStatus

type Rep GetRepositorySyncStatus Source # 
Instance details

Defined in Amazonka.Proton.GetRepositorySyncStatus

type Rep GetRepositorySyncStatus = D1 ('MetaData "GetRepositorySyncStatus" "Amazonka.Proton.GetRepositorySyncStatus" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "GetRepositorySyncStatus'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "branch") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "repositoryName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "repositoryProvider") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 RepositoryProvider) :*: S1 ('MetaSel ('Just "syncType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 SyncType))))

newGetRepositorySyncStatus Source #

Create a value of GetRepositorySyncStatus 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:

GetRepositorySyncStatus, getRepositorySyncStatus_branch - The repository branch.

GetRepositorySyncStatus, getRepositorySyncStatus_repositoryName - The repository name.

GetRepositorySyncStatus, getRepositorySyncStatus_repositoryProvider - The repository provider.

$sel:syncType:GetRepositorySyncStatus', getRepositorySyncStatus_syncType - The repository sync type.

data GetRepositorySyncStatusResponse Source #

See: newGetRepositorySyncStatusResponse smart constructor.

Instances

Instances details
Generic GetRepositorySyncStatusResponse Source # 
Instance details

Defined in Amazonka.Proton.GetRepositorySyncStatus

Associated Types

type Rep GetRepositorySyncStatusResponse :: Type -> Type #

Read GetRepositorySyncStatusResponse Source # 
Instance details

Defined in Amazonka.Proton.GetRepositorySyncStatus

Show GetRepositorySyncStatusResponse Source # 
Instance details

Defined in Amazonka.Proton.GetRepositorySyncStatus

NFData GetRepositorySyncStatusResponse Source # 
Instance details

Defined in Amazonka.Proton.GetRepositorySyncStatus

Eq GetRepositorySyncStatusResponse Source # 
Instance details

Defined in Amazonka.Proton.GetRepositorySyncStatus

type Rep GetRepositorySyncStatusResponse Source # 
Instance details

Defined in Amazonka.Proton.GetRepositorySyncStatus

type Rep GetRepositorySyncStatusResponse = D1 ('MetaData "GetRepositorySyncStatusResponse" "Amazonka.Proton.GetRepositorySyncStatus" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "GetRepositorySyncStatusResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "latestSync") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe RepositorySyncAttempt)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newGetRepositorySyncStatusResponse Source #

Create a value of GetRepositorySyncStatusResponse 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:latestSync:GetRepositorySyncStatusResponse', getRepositorySyncStatusResponse_latestSync - The repository sync status detail data that's returned by Proton.

$sel:httpStatus:GetRepositorySyncStatusResponse', getRepositorySyncStatusResponse_httpStatus - The response's http status code.

GetService

data GetService Source #

See: newGetService smart constructor.

Constructors

GetService' Text 

Instances

Instances details
ToJSON GetService Source # 
Instance details

Defined in Amazonka.Proton.GetService

ToHeaders GetService Source # 
Instance details

Defined in Amazonka.Proton.GetService

Methods

toHeaders :: GetService -> [Header] #

ToPath GetService Source # 
Instance details

Defined in Amazonka.Proton.GetService

ToQuery GetService Source # 
Instance details

Defined in Amazonka.Proton.GetService

AWSRequest GetService Source # 
Instance details

Defined in Amazonka.Proton.GetService

Associated Types

type AWSResponse GetService #

Generic GetService Source # 
Instance details

Defined in Amazonka.Proton.GetService

Associated Types

type Rep GetService :: Type -> Type #

Read GetService Source # 
Instance details

Defined in Amazonka.Proton.GetService

Show GetService Source # 
Instance details

Defined in Amazonka.Proton.GetService

NFData GetService Source # 
Instance details

Defined in Amazonka.Proton.GetService

Methods

rnf :: GetService -> () #

Eq GetService Source # 
Instance details

Defined in Amazonka.Proton.GetService

Hashable GetService Source # 
Instance details

Defined in Amazonka.Proton.GetService

type AWSResponse GetService Source # 
Instance details

Defined in Amazonka.Proton.GetService

type Rep GetService Source # 
Instance details

Defined in Amazonka.Proton.GetService

type Rep GetService = D1 ('MetaData "GetService" "Amazonka.Proton.GetService" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "GetService'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newGetService Source #

Arguments

:: Text

GetService

-> GetService 

Create a value of GetService 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:

GetService, getService_name - The name of the service that you want to get the detailed data for.

data GetServiceResponse Source #

See: newGetServiceResponse smart constructor.

Instances

Instances details
Generic GetServiceResponse Source # 
Instance details

Defined in Amazonka.Proton.GetService

Associated Types

type Rep GetServiceResponse :: Type -> Type #

Show GetServiceResponse Source # 
Instance details

Defined in Amazonka.Proton.GetService

NFData GetServiceResponse Source # 
Instance details

Defined in Amazonka.Proton.GetService

Methods

rnf :: GetServiceResponse -> () #

Eq GetServiceResponse Source # 
Instance details

Defined in Amazonka.Proton.GetService

type Rep GetServiceResponse Source # 
Instance details

Defined in Amazonka.Proton.GetService

type Rep GetServiceResponse = D1 ('MetaData "GetServiceResponse" "Amazonka.Proton.GetService" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "GetServiceResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "service") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Service)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newGetServiceResponse Source #

Create a value of GetServiceResponse 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:service:GetServiceResponse', getServiceResponse_service - The detailed data of the requested service.

$sel:httpStatus:GetServiceResponse', getServiceResponse_httpStatus - The response's http status code.

GetServiceInstance

data GetServiceInstance Source #

See: newGetServiceInstance smart constructor.

Instances

Instances details
ToJSON GetServiceInstance Source # 
Instance details

Defined in Amazonka.Proton.GetServiceInstance

ToHeaders GetServiceInstance Source # 
Instance details

Defined in Amazonka.Proton.GetServiceInstance

ToPath GetServiceInstance Source # 
Instance details

Defined in Amazonka.Proton.GetServiceInstance

ToQuery GetServiceInstance Source # 
Instance details

Defined in Amazonka.Proton.GetServiceInstance

AWSRequest GetServiceInstance Source # 
Instance details

Defined in Amazonka.Proton.GetServiceInstance

Associated Types

type AWSResponse GetServiceInstance #

Generic GetServiceInstance Source # 
Instance details

Defined in Amazonka.Proton.GetServiceInstance

Associated Types

type Rep GetServiceInstance :: Type -> Type #

Read GetServiceInstance Source # 
Instance details

Defined in Amazonka.Proton.GetServiceInstance

Show GetServiceInstance Source # 
Instance details

Defined in Amazonka.Proton.GetServiceInstance

NFData GetServiceInstance Source # 
Instance details

Defined in Amazonka.Proton.GetServiceInstance

Methods

rnf :: GetServiceInstance -> () #

Eq GetServiceInstance Source # 
Instance details

Defined in Amazonka.Proton.GetServiceInstance

Hashable GetServiceInstance Source # 
Instance details

Defined in Amazonka.Proton.GetServiceInstance

type AWSResponse GetServiceInstance Source # 
Instance details

Defined in Amazonka.Proton.GetServiceInstance

type Rep GetServiceInstance Source # 
Instance details

Defined in Amazonka.Proton.GetServiceInstance

type Rep GetServiceInstance = D1 ('MetaData "GetServiceInstance" "Amazonka.Proton.GetServiceInstance" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "GetServiceInstance'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "serviceName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newGetServiceInstance Source #

Create a value of GetServiceInstance 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:

GetServiceInstance, getServiceInstance_name - The name of a service instance that you want to get the detailed data for.

GetServiceInstance, getServiceInstance_serviceName - The name of the service that the service instance belongs to.

data GetServiceInstanceResponse Source #

See: newGetServiceInstanceResponse smart constructor.

Instances

Instances details
Generic GetServiceInstanceResponse Source # 
Instance details

Defined in Amazonka.Proton.GetServiceInstance

Associated Types

type Rep GetServiceInstanceResponse :: Type -> Type #

Show GetServiceInstanceResponse Source # 
Instance details

Defined in Amazonka.Proton.GetServiceInstance

NFData GetServiceInstanceResponse Source # 
Instance details

Defined in Amazonka.Proton.GetServiceInstance

Eq GetServiceInstanceResponse Source # 
Instance details

Defined in Amazonka.Proton.GetServiceInstance

type Rep GetServiceInstanceResponse Source # 
Instance details

Defined in Amazonka.Proton.GetServiceInstance

type Rep GetServiceInstanceResponse = D1 ('MetaData "GetServiceInstanceResponse" "Amazonka.Proton.GetServiceInstance" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "GetServiceInstanceResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "serviceInstance") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ServiceInstance)))

newGetServiceInstanceResponse Source #

Create a value of GetServiceInstanceResponse 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:httpStatus:GetServiceInstanceResponse', getServiceInstanceResponse_httpStatus - The response's http status code.

$sel:serviceInstance:GetServiceInstanceResponse', getServiceInstanceResponse_serviceInstance - The detailed data of the requested service instance.

GetServiceTemplate

data GetServiceTemplate Source #

See: newGetServiceTemplate smart constructor.

Instances

Instances details
ToJSON GetServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.GetServiceTemplate

ToHeaders GetServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.GetServiceTemplate

ToPath GetServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.GetServiceTemplate

ToQuery GetServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.GetServiceTemplate

AWSRequest GetServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.GetServiceTemplate

Associated Types

type AWSResponse GetServiceTemplate #

Generic GetServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.GetServiceTemplate

Associated Types

type Rep GetServiceTemplate :: Type -> Type #

Read GetServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.GetServiceTemplate

Show GetServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.GetServiceTemplate

NFData GetServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.GetServiceTemplate

Methods

rnf :: GetServiceTemplate -> () #

Eq GetServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.GetServiceTemplate

Hashable GetServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.GetServiceTemplate

type AWSResponse GetServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.GetServiceTemplate

type Rep GetServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.GetServiceTemplate

type Rep GetServiceTemplate = D1 ('MetaData "GetServiceTemplate" "Amazonka.Proton.GetServiceTemplate" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "GetServiceTemplate'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newGetServiceTemplate Source #

Create a value of GetServiceTemplate 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:

GetServiceTemplate, getServiceTemplate_name - The name of the service template that you want to get detailed data for.

data GetServiceTemplateResponse Source #

See: newGetServiceTemplateResponse smart constructor.

Instances

Instances details
Generic GetServiceTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.GetServiceTemplate

Associated Types

type Rep GetServiceTemplateResponse :: Type -> Type #

Show GetServiceTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.GetServiceTemplate

NFData GetServiceTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.GetServiceTemplate

Eq GetServiceTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.GetServiceTemplate

type Rep GetServiceTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.GetServiceTemplate

type Rep GetServiceTemplateResponse = D1 ('MetaData "GetServiceTemplateResponse" "Amazonka.Proton.GetServiceTemplate" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "GetServiceTemplateResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "serviceTemplate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ServiceTemplate)))

newGetServiceTemplateResponse Source #

Create a value of GetServiceTemplateResponse 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:httpStatus:GetServiceTemplateResponse', getServiceTemplateResponse_httpStatus - The response's http status code.

$sel:serviceTemplate:GetServiceTemplateResponse', getServiceTemplateResponse_serviceTemplate - The detailed data of the requested service template.

GetServiceTemplateVersion

data GetServiceTemplateVersion Source #

See: newGetServiceTemplateVersion smart constructor.

Instances

Instances details
ToJSON GetServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.GetServiceTemplateVersion

ToHeaders GetServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.GetServiceTemplateVersion

ToPath GetServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.GetServiceTemplateVersion

ToQuery GetServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.GetServiceTemplateVersion

AWSRequest GetServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.GetServiceTemplateVersion

Generic GetServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.GetServiceTemplateVersion

Associated Types

type Rep GetServiceTemplateVersion :: Type -> Type #

Read GetServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.GetServiceTemplateVersion

Show GetServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.GetServiceTemplateVersion

NFData GetServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.GetServiceTemplateVersion

Eq GetServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.GetServiceTemplateVersion

Hashable GetServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.GetServiceTemplateVersion

type AWSResponse GetServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.GetServiceTemplateVersion

type Rep GetServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.GetServiceTemplateVersion

type Rep GetServiceTemplateVersion = D1 ('MetaData "GetServiceTemplateVersion" "Amazonka.Proton.GetServiceTemplateVersion" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "GetServiceTemplateVersion'" 'PrefixI 'True) (S1 ('MetaSel ('Just "majorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "minorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "templateName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newGetServiceTemplateVersion Source #

Create a value of GetServiceTemplateVersion 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:

GetServiceTemplateVersion, getServiceTemplateVersion_majorVersion - To get service template major version detail data, include major Version.

GetServiceTemplateVersion, getServiceTemplateVersion_minorVersion - To get service template minor version detail data, include minorVersion.

GetServiceTemplateVersion, getServiceTemplateVersion_templateName - The name of the service template a version of which you want to get detailed data for.

data GetServiceTemplateVersionResponse Source #

See: newGetServiceTemplateVersionResponse smart constructor.

Instances

Instances details
Generic GetServiceTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.GetServiceTemplateVersion

Associated Types

type Rep GetServiceTemplateVersionResponse :: Type -> Type #

Show GetServiceTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.GetServiceTemplateVersion

NFData GetServiceTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.GetServiceTemplateVersion

Eq GetServiceTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.GetServiceTemplateVersion

type Rep GetServiceTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.GetServiceTemplateVersion

type Rep GetServiceTemplateVersionResponse = D1 ('MetaData "GetServiceTemplateVersionResponse" "Amazonka.Proton.GetServiceTemplateVersion" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "GetServiceTemplateVersionResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "serviceTemplateVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ServiceTemplateVersion)))

newGetServiceTemplateVersionResponse Source #

Create a value of GetServiceTemplateVersionResponse 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:httpStatus:GetServiceTemplateVersionResponse', getServiceTemplateVersionResponse_httpStatus - The response's http status code.

$sel:serviceTemplateVersion:GetServiceTemplateVersionResponse', getServiceTemplateVersionResponse_serviceTemplateVersion - The detailed data of the requested service template version.

GetTemplateSyncConfig

data GetTemplateSyncConfig Source #

See: newGetTemplateSyncConfig smart constructor.

Instances

Instances details
ToJSON GetTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.GetTemplateSyncConfig

ToHeaders GetTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.GetTemplateSyncConfig

ToPath GetTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.GetTemplateSyncConfig

ToQuery GetTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.GetTemplateSyncConfig

AWSRequest GetTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.GetTemplateSyncConfig

Associated Types

type AWSResponse GetTemplateSyncConfig #

Generic GetTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.GetTemplateSyncConfig

Associated Types

type Rep GetTemplateSyncConfig :: Type -> Type #

Read GetTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.GetTemplateSyncConfig

Show GetTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.GetTemplateSyncConfig

NFData GetTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.GetTemplateSyncConfig

Methods

rnf :: GetTemplateSyncConfig -> () #

Eq GetTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.GetTemplateSyncConfig

Hashable GetTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.GetTemplateSyncConfig

type AWSResponse GetTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.GetTemplateSyncConfig

type Rep GetTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.GetTemplateSyncConfig

type Rep GetTemplateSyncConfig = D1 ('MetaData "GetTemplateSyncConfig" "Amazonka.Proton.GetTemplateSyncConfig" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "GetTemplateSyncConfig'" 'PrefixI 'True) (S1 ('MetaSel ('Just "templateName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "templateType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 TemplateType)))

newGetTemplateSyncConfig Source #

Create a value of GetTemplateSyncConfig 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:

GetTemplateSyncConfig, getTemplateSyncConfig_templateName - The template name.

GetTemplateSyncConfig, getTemplateSyncConfig_templateType - The template type.

data GetTemplateSyncConfigResponse Source #

See: newGetTemplateSyncConfigResponse smart constructor.

Instances

Instances details
Generic GetTemplateSyncConfigResponse Source # 
Instance details

Defined in Amazonka.Proton.GetTemplateSyncConfig

Associated Types

type Rep GetTemplateSyncConfigResponse :: Type -> Type #

Read GetTemplateSyncConfigResponse Source # 
Instance details

Defined in Amazonka.Proton.GetTemplateSyncConfig

Show GetTemplateSyncConfigResponse Source # 
Instance details

Defined in Amazonka.Proton.GetTemplateSyncConfig

NFData GetTemplateSyncConfigResponse Source # 
Instance details

Defined in Amazonka.Proton.GetTemplateSyncConfig

Eq GetTemplateSyncConfigResponse Source # 
Instance details

Defined in Amazonka.Proton.GetTemplateSyncConfig

type Rep GetTemplateSyncConfigResponse Source # 
Instance details

Defined in Amazonka.Proton.GetTemplateSyncConfig

type Rep GetTemplateSyncConfigResponse = D1 ('MetaData "GetTemplateSyncConfigResponse" "Amazonka.Proton.GetTemplateSyncConfig" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "GetTemplateSyncConfigResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "templateSyncConfig") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe TemplateSyncConfig)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newGetTemplateSyncConfigResponse Source #

Create a value of GetTemplateSyncConfigResponse 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:templateSyncConfig:GetTemplateSyncConfigResponse', getTemplateSyncConfigResponse_templateSyncConfig - The template sync configuration detail data that's returned by Proton.

$sel:httpStatus:GetTemplateSyncConfigResponse', getTemplateSyncConfigResponse_httpStatus - The response's http status code.

GetTemplateSyncStatus

data GetTemplateSyncStatus Source #

See: newGetTemplateSyncStatus smart constructor.

Instances

Instances details
ToJSON GetTemplateSyncStatus Source # 
Instance details

Defined in Amazonka.Proton.GetTemplateSyncStatus

ToHeaders GetTemplateSyncStatus Source # 
Instance details

Defined in Amazonka.Proton.GetTemplateSyncStatus

ToPath GetTemplateSyncStatus Source # 
Instance details

Defined in Amazonka.Proton.GetTemplateSyncStatus

ToQuery GetTemplateSyncStatus Source # 
Instance details

Defined in Amazonka.Proton.GetTemplateSyncStatus

AWSRequest GetTemplateSyncStatus Source # 
Instance details

Defined in Amazonka.Proton.GetTemplateSyncStatus

Associated Types

type AWSResponse GetTemplateSyncStatus #

Generic GetTemplateSyncStatus Source # 
Instance details

Defined in Amazonka.Proton.GetTemplateSyncStatus

Associated Types

type Rep GetTemplateSyncStatus :: Type -> Type #

Read GetTemplateSyncStatus Source # 
Instance details

Defined in Amazonka.Proton.GetTemplateSyncStatus

Show GetTemplateSyncStatus Source # 
Instance details

Defined in Amazonka.Proton.GetTemplateSyncStatus

NFData GetTemplateSyncStatus Source # 
Instance details

Defined in Amazonka.Proton.GetTemplateSyncStatus

Methods

rnf :: GetTemplateSyncStatus -> () #

Eq GetTemplateSyncStatus Source # 
Instance details

Defined in Amazonka.Proton.GetTemplateSyncStatus

Hashable GetTemplateSyncStatus Source # 
Instance details

Defined in Amazonka.Proton.GetTemplateSyncStatus

type AWSResponse GetTemplateSyncStatus Source # 
Instance details

Defined in Amazonka.Proton.GetTemplateSyncStatus

type Rep GetTemplateSyncStatus Source # 
Instance details

Defined in Amazonka.Proton.GetTemplateSyncStatus

type Rep GetTemplateSyncStatus = D1 ('MetaData "GetTemplateSyncStatus" "Amazonka.Proton.GetTemplateSyncStatus" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "GetTemplateSyncStatus'" 'PrefixI 'True) (S1 ('MetaSel ('Just "templateName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "templateType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 TemplateType) :*: S1 ('MetaSel ('Just "templateVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newGetTemplateSyncStatus Source #

Create a value of GetTemplateSyncStatus 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:

GetTemplateSyncStatus, getTemplateSyncStatus_templateName - The template name.

GetTemplateSyncStatus, getTemplateSyncStatus_templateType - The template type.

$sel:templateVersion:GetTemplateSyncStatus', getTemplateSyncStatus_templateVersion - The template major version.

data GetTemplateSyncStatusResponse Source #

See: newGetTemplateSyncStatusResponse smart constructor.

Instances

Instances details
Generic GetTemplateSyncStatusResponse Source # 
Instance details

Defined in Amazonka.Proton.GetTemplateSyncStatus

Associated Types

type Rep GetTemplateSyncStatusResponse :: Type -> Type #

Read GetTemplateSyncStatusResponse Source # 
Instance details

Defined in Amazonka.Proton.GetTemplateSyncStatus

Show GetTemplateSyncStatusResponse Source # 
Instance details

Defined in Amazonka.Proton.GetTemplateSyncStatus

NFData GetTemplateSyncStatusResponse Source # 
Instance details

Defined in Amazonka.Proton.GetTemplateSyncStatus

Eq GetTemplateSyncStatusResponse Source # 
Instance details

Defined in Amazonka.Proton.GetTemplateSyncStatus

type Rep GetTemplateSyncStatusResponse Source # 
Instance details

Defined in Amazonka.Proton.GetTemplateSyncStatus

type Rep GetTemplateSyncStatusResponse = D1 ('MetaData "GetTemplateSyncStatusResponse" "Amazonka.Proton.GetTemplateSyncStatus" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "GetTemplateSyncStatusResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "desiredState") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Revision)) :*: S1 ('MetaSel ('Just "latestSuccessfulSync") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ResourceSyncAttempt))) :*: (S1 ('MetaSel ('Just "latestSync") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ResourceSyncAttempt)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newGetTemplateSyncStatusResponse Source #

Create a value of GetTemplateSyncStatusResponse 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:desiredState:GetTemplateSyncStatusResponse', getTemplateSyncStatusResponse_desiredState - The template sync desired state that's returned by Proton.

$sel:latestSuccessfulSync:GetTemplateSyncStatusResponse', getTemplateSyncStatusResponse_latestSuccessfulSync - The details of the last successful sync that's returned by Proton.

$sel:latestSync:GetTemplateSyncStatusResponse', getTemplateSyncStatusResponse_latestSync - The details of the last sync that's returned by Proton.

$sel:httpStatus:GetTemplateSyncStatusResponse', getTemplateSyncStatusResponse_httpStatus - The response's http status code.

ListComponentOutputs (Paginated)

data ListComponentOutputs Source #

See: newListComponentOutputs smart constructor.

Instances

Instances details
ToJSON ListComponentOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListComponentOutputs

ToHeaders ListComponentOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListComponentOutputs

ToPath ListComponentOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListComponentOutputs

ToQuery ListComponentOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListComponentOutputs

AWSPager ListComponentOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListComponentOutputs

AWSRequest ListComponentOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListComponentOutputs

Associated Types

type AWSResponse ListComponentOutputs #

Generic ListComponentOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListComponentOutputs

Associated Types

type Rep ListComponentOutputs :: Type -> Type #

Read ListComponentOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListComponentOutputs

Show ListComponentOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListComponentOutputs

NFData ListComponentOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListComponentOutputs

Methods

rnf :: ListComponentOutputs -> () #

Eq ListComponentOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListComponentOutputs

Hashable ListComponentOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListComponentOutputs

type AWSResponse ListComponentOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListComponentOutputs

type Rep ListComponentOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListComponentOutputs

type Rep ListComponentOutputs = D1 ('MetaData "ListComponentOutputs" "Amazonka.Proton.ListComponentOutputs" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListComponentOutputs'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "componentName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newListComponentOutputs Source #

Create a value of ListComponentOutputs 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:

ListComponentOutputs, listComponentOutputs_nextToken - A token that indicates the location of the next output in the array of outputs, after the list of outputs that was previously requested.

$sel:componentName:ListComponentOutputs', listComponentOutputs_componentName - The name of the component whose outputs you want.

data ListComponentOutputsResponse Source #

See: newListComponentOutputsResponse smart constructor.

Instances

Instances details
Generic ListComponentOutputsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListComponentOutputs

Associated Types

type Rep ListComponentOutputsResponse :: Type -> Type #

Show ListComponentOutputsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListComponentOutputs

NFData ListComponentOutputsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListComponentOutputs

Eq ListComponentOutputsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListComponentOutputs

type Rep ListComponentOutputsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListComponentOutputs

type Rep ListComponentOutputsResponse = D1 ('MetaData "ListComponentOutputsResponse" "Amazonka.Proton.ListComponentOutputs" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListComponentOutputsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "outputs") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [Sensitive Output]))))

newListComponentOutputsResponse Source #

Create a value of ListComponentOutputsResponse 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:

ListComponentOutputs, listComponentOutputsResponse_nextToken - A token that indicates the location of the next output in the array of outputs, after the list of outputs that was previously requested.

$sel:httpStatus:ListComponentOutputsResponse', listComponentOutputsResponse_httpStatus - The response's http status code.

$sel:outputs:ListComponentOutputsResponse', listComponentOutputsResponse_outputs - An array of component Infrastructure as Code (IaC) outputs.

ListComponentProvisionedResources (Paginated)

data ListComponentProvisionedResources Source #

See: newListComponentProvisionedResources smart constructor.

Instances

Instances details
ToJSON ListComponentProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListComponentProvisionedResources

ToHeaders ListComponentProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListComponentProvisionedResources

ToPath ListComponentProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListComponentProvisionedResources

ToQuery ListComponentProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListComponentProvisionedResources

AWSPager ListComponentProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListComponentProvisionedResources

AWSRequest ListComponentProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListComponentProvisionedResources

Generic ListComponentProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListComponentProvisionedResources

Associated Types

type Rep ListComponentProvisionedResources :: Type -> Type #

Read ListComponentProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListComponentProvisionedResources

Show ListComponentProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListComponentProvisionedResources

NFData ListComponentProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListComponentProvisionedResources

Eq ListComponentProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListComponentProvisionedResources

Hashable ListComponentProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListComponentProvisionedResources

type AWSResponse ListComponentProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListComponentProvisionedResources

type Rep ListComponentProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListComponentProvisionedResources

type Rep ListComponentProvisionedResources = D1 ('MetaData "ListComponentProvisionedResources" "Amazonka.Proton.ListComponentProvisionedResources" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListComponentProvisionedResources'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "componentName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newListComponentProvisionedResources Source #

Create a value of ListComponentProvisionedResources 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:

ListComponentProvisionedResources, listComponentProvisionedResources_nextToken - A token that indicates the location of the next provisioned resource in the array of provisioned resources, after the list of provisioned resources that was previously requested.

$sel:componentName:ListComponentProvisionedResources', listComponentProvisionedResources_componentName - The name of the component whose provisioned resources you want.

data ListComponentProvisionedResourcesResponse Source #

Instances

Instances details
Generic ListComponentProvisionedResourcesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListComponentProvisionedResources

Read ListComponentProvisionedResourcesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListComponentProvisionedResources

Show ListComponentProvisionedResourcesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListComponentProvisionedResources

NFData ListComponentProvisionedResourcesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListComponentProvisionedResources

Eq ListComponentProvisionedResourcesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListComponentProvisionedResources

type Rep ListComponentProvisionedResourcesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListComponentProvisionedResources

type Rep ListComponentProvisionedResourcesResponse = D1 ('MetaData "ListComponentProvisionedResourcesResponse" "Amazonka.Proton.ListComponentProvisionedResources" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListComponentProvisionedResourcesResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "provisionedResources") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [ProvisionedResource]))))

newListComponentProvisionedResourcesResponse Source #

Create a value of ListComponentProvisionedResourcesResponse 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:

ListComponentProvisionedResources, listComponentProvisionedResourcesResponse_nextToken - A token that indicates the location of the next provisioned resource in the array of provisioned resources, after the current requested list of provisioned resources.

$sel:httpStatus:ListComponentProvisionedResourcesResponse', listComponentProvisionedResourcesResponse_httpStatus - The response's http status code.

$sel:provisionedResources:ListComponentProvisionedResourcesResponse', listComponentProvisionedResourcesResponse_provisionedResources - An array of provisioned resources for a component.

ListComponents (Paginated)

data ListComponents Source #

See: newListComponents smart constructor.

Instances

Instances details
ToJSON ListComponents Source # 
Instance details

Defined in Amazonka.Proton.ListComponents

ToHeaders ListComponents Source # 
Instance details

Defined in Amazonka.Proton.ListComponents

ToPath ListComponents Source # 
Instance details

Defined in Amazonka.Proton.ListComponents

ToQuery ListComponents Source # 
Instance details

Defined in Amazonka.Proton.ListComponents

AWSPager ListComponents Source # 
Instance details

Defined in Amazonka.Proton.ListComponents

AWSRequest ListComponents Source # 
Instance details

Defined in Amazonka.Proton.ListComponents

Associated Types

type AWSResponse ListComponents #

Generic ListComponents Source # 
Instance details

Defined in Amazonka.Proton.ListComponents

Associated Types

type Rep ListComponents :: Type -> Type #

Read ListComponents Source # 
Instance details

Defined in Amazonka.Proton.ListComponents

Show ListComponents Source # 
Instance details

Defined in Amazonka.Proton.ListComponents

NFData ListComponents Source # 
Instance details

Defined in Amazonka.Proton.ListComponents

Methods

rnf :: ListComponents -> () #

Eq ListComponents Source # 
Instance details

Defined in Amazonka.Proton.ListComponents

Hashable ListComponents Source # 
Instance details

Defined in Amazonka.Proton.ListComponents

type AWSResponse ListComponents Source # 
Instance details

Defined in Amazonka.Proton.ListComponents

type Rep ListComponents Source # 
Instance details

Defined in Amazonka.Proton.ListComponents

type Rep ListComponents = D1 ('MetaData "ListComponents" "Amazonka.Proton.ListComponents" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListComponents'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "environmentName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural))) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "serviceInstanceName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "serviceName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))))

newListComponents :: ListComponents Source #

Create a value of ListComponents 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:

ListComponents, listComponents_environmentName - The name of an environment for result list filtering. Proton returns components associated with the environment or attached to service instances running in it.

$sel:maxResults:ListComponents', listComponents_maxResults - The maximum number of components to list.

ListComponents, listComponents_nextToken - A token that indicates the location of the next component in the array of components, after the list of components that was previously requested.

ListComponents, listComponents_serviceInstanceName - The name of a service instance for result list filtering. Proton returns the component attached to the service instance, if any.

ListComponents, listComponents_serviceName - The name of a service for result list filtering. Proton returns components attached to service instances of the service.

data ListComponentsResponse Source #

See: newListComponentsResponse smart constructor.

Instances

Instances details
Generic ListComponentsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListComponents

Associated Types

type Rep ListComponentsResponse :: Type -> Type #

Show ListComponentsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListComponents

NFData ListComponentsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListComponents

Methods

rnf :: ListComponentsResponse -> () #

Eq ListComponentsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListComponents

type Rep ListComponentsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListComponents

type Rep ListComponentsResponse = D1 ('MetaData "ListComponentsResponse" "Amazonka.Proton.ListComponents" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListComponentsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "components") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [ComponentSummary]))))

newListComponentsResponse Source #

Create a value of ListComponentsResponse 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:

ListComponents, listComponentsResponse_nextToken - A token that indicates the location of the next component in the array of components, after the current requested list of components.

$sel:httpStatus:ListComponentsResponse', listComponentsResponse_httpStatus - The response's http status code.

$sel:components:ListComponentsResponse', listComponentsResponse_components - An array of components with summary data.

ListEnvironmentAccountConnections (Paginated)

data ListEnvironmentAccountConnections Source #

See: newListEnvironmentAccountConnections smart constructor.

Instances

Instances details
ToJSON ListEnvironmentAccountConnections Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentAccountConnections

ToHeaders ListEnvironmentAccountConnections Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentAccountConnections

ToPath ListEnvironmentAccountConnections Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentAccountConnections

ToQuery ListEnvironmentAccountConnections Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentAccountConnections

AWSPager ListEnvironmentAccountConnections Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentAccountConnections

AWSRequest ListEnvironmentAccountConnections Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentAccountConnections

Generic ListEnvironmentAccountConnections Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentAccountConnections

Associated Types

type Rep ListEnvironmentAccountConnections :: Type -> Type #

Read ListEnvironmentAccountConnections Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentAccountConnections

Show ListEnvironmentAccountConnections Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentAccountConnections

NFData ListEnvironmentAccountConnections Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentAccountConnections

Eq ListEnvironmentAccountConnections Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentAccountConnections

Hashable ListEnvironmentAccountConnections Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentAccountConnections

type AWSResponse ListEnvironmentAccountConnections Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentAccountConnections

type Rep ListEnvironmentAccountConnections Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentAccountConnections

type Rep ListEnvironmentAccountConnections = D1 ('MetaData "ListEnvironmentAccountConnections" "Amazonka.Proton.ListEnvironmentAccountConnections" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListEnvironmentAccountConnections'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "environmentName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural))) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "statuses") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [EnvironmentAccountConnectionStatus])) :*: S1 ('MetaSel ('Just "requestedBy") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 EnvironmentAccountConnectionRequesterAccountType)))))

newListEnvironmentAccountConnections Source #

Create a value of ListEnvironmentAccountConnections 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:

ListEnvironmentAccountConnections, listEnvironmentAccountConnections_environmentName - The environment name that's associated with each listed environment account connection.

$sel:maxResults:ListEnvironmentAccountConnections', listEnvironmentAccountConnections_maxResults - The maximum number of environment account connections to list.

ListEnvironmentAccountConnections, listEnvironmentAccountConnections_nextToken - A token that indicates the location of the next environment account connection in the array of environment account connections, after the list of environment account connections that was previously requested.

$sel:statuses:ListEnvironmentAccountConnections', listEnvironmentAccountConnections_statuses - The status details for each listed environment account connection.

$sel:requestedBy:ListEnvironmentAccountConnections', listEnvironmentAccountConnections_requestedBy - The type of account making the ListEnvironmentAccountConnections request.

data ListEnvironmentAccountConnectionsResponse Source #

Instances

Instances details
Generic ListEnvironmentAccountConnectionsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentAccountConnections

Read ListEnvironmentAccountConnectionsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentAccountConnections

Show ListEnvironmentAccountConnectionsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentAccountConnections

NFData ListEnvironmentAccountConnectionsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentAccountConnections

Eq ListEnvironmentAccountConnectionsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentAccountConnections

type Rep ListEnvironmentAccountConnectionsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentAccountConnections

type Rep ListEnvironmentAccountConnectionsResponse = D1 ('MetaData "ListEnvironmentAccountConnectionsResponse" "Amazonka.Proton.ListEnvironmentAccountConnections" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListEnvironmentAccountConnectionsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "environmentAccountConnections") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [EnvironmentAccountConnectionSummary]))))

newListEnvironmentAccountConnectionsResponse Source #

Create a value of ListEnvironmentAccountConnectionsResponse 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:

ListEnvironmentAccountConnections, listEnvironmentAccountConnectionsResponse_nextToken - A token that indicates the location of the next environment account connection in the array of environment account connections, after the current requested list of environment account connections.

$sel:httpStatus:ListEnvironmentAccountConnectionsResponse', listEnvironmentAccountConnectionsResponse_httpStatus - The response's http status code.

$sel:environmentAccountConnections:ListEnvironmentAccountConnectionsResponse', listEnvironmentAccountConnectionsResponse_environmentAccountConnections - An array of environment account connections with details that's returned by Proton.

ListEnvironmentOutputs (Paginated)

data ListEnvironmentOutputs Source #

See: newListEnvironmentOutputs smart constructor.

Instances

Instances details
ToJSON ListEnvironmentOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentOutputs

ToHeaders ListEnvironmentOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentOutputs

ToPath ListEnvironmentOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentOutputs

ToQuery ListEnvironmentOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentOutputs

AWSPager ListEnvironmentOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentOutputs

AWSRequest ListEnvironmentOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentOutputs

Associated Types

type AWSResponse ListEnvironmentOutputs #

Generic ListEnvironmentOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentOutputs

Associated Types

type Rep ListEnvironmentOutputs :: Type -> Type #

Read ListEnvironmentOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentOutputs

Show ListEnvironmentOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentOutputs

NFData ListEnvironmentOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentOutputs

Methods

rnf :: ListEnvironmentOutputs -> () #

Eq ListEnvironmentOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentOutputs

Hashable ListEnvironmentOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentOutputs

type AWSResponse ListEnvironmentOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentOutputs

type Rep ListEnvironmentOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentOutputs

type Rep ListEnvironmentOutputs = D1 ('MetaData "ListEnvironmentOutputs" "Amazonka.Proton.ListEnvironmentOutputs" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListEnvironmentOutputs'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "environmentName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newListEnvironmentOutputs Source #

Create a value of ListEnvironmentOutputs 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:

ListEnvironmentOutputs, listEnvironmentOutputs_nextToken - A token that indicates the location of the next environment output in the array of environment outputs, after the list of environment outputs that was previously requested.

ListEnvironmentOutputs, listEnvironmentOutputs_environmentName - The environment name.

data ListEnvironmentOutputsResponse Source #

See: newListEnvironmentOutputsResponse smart constructor.

Instances

Instances details
Generic ListEnvironmentOutputsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentOutputs

Associated Types

type Rep ListEnvironmentOutputsResponse :: Type -> Type #

Show ListEnvironmentOutputsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentOutputs

NFData ListEnvironmentOutputsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentOutputs

Eq ListEnvironmentOutputsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentOutputs

type Rep ListEnvironmentOutputsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentOutputs

type Rep ListEnvironmentOutputsResponse = D1 ('MetaData "ListEnvironmentOutputsResponse" "Amazonka.Proton.ListEnvironmentOutputs" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListEnvironmentOutputsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "outputs") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [Sensitive Output]))))

newListEnvironmentOutputsResponse Source #

Create a value of ListEnvironmentOutputsResponse 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:

ListEnvironmentOutputs, listEnvironmentOutputsResponse_nextToken - A token that indicates the location of the next environment output in the array of environment outputs, after the current requested list of environment outputs.

$sel:httpStatus:ListEnvironmentOutputsResponse', listEnvironmentOutputsResponse_httpStatus - The response's http status code.

$sel:outputs:ListEnvironmentOutputsResponse', listEnvironmentOutputsResponse_outputs - An array of environment outputs with detail data.

ListEnvironmentProvisionedResources (Paginated)

data ListEnvironmentProvisionedResources Source #

Instances

Instances details
ToJSON ListEnvironmentProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentProvisionedResources

ToHeaders ListEnvironmentProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentProvisionedResources

ToPath ListEnvironmentProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentProvisionedResources

ToQuery ListEnvironmentProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentProvisionedResources

AWSPager ListEnvironmentProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentProvisionedResources

AWSRequest ListEnvironmentProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentProvisionedResources

Generic ListEnvironmentProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentProvisionedResources

Read ListEnvironmentProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentProvisionedResources

Show ListEnvironmentProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentProvisionedResources

NFData ListEnvironmentProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentProvisionedResources

Eq ListEnvironmentProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentProvisionedResources

Hashable ListEnvironmentProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentProvisionedResources

type AWSResponse ListEnvironmentProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentProvisionedResources

type Rep ListEnvironmentProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentProvisionedResources

type Rep ListEnvironmentProvisionedResources = D1 ('MetaData "ListEnvironmentProvisionedResources" "Amazonka.Proton.ListEnvironmentProvisionedResources" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListEnvironmentProvisionedResources'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "environmentName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newListEnvironmentProvisionedResources Source #

Create a value of ListEnvironmentProvisionedResources 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:

ListEnvironmentProvisionedResources, listEnvironmentProvisionedResources_nextToken - A token that indicates the location of the next environment provisioned resource in the array of environment provisioned resources, after the list of environment provisioned resources that was previously requested.

ListEnvironmentProvisionedResources, listEnvironmentProvisionedResources_environmentName - The environment name.

data ListEnvironmentProvisionedResourcesResponse Source #

Instances

Instances details
Generic ListEnvironmentProvisionedResourcesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentProvisionedResources

Read ListEnvironmentProvisionedResourcesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentProvisionedResources

Show ListEnvironmentProvisionedResourcesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentProvisionedResources

NFData ListEnvironmentProvisionedResourcesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentProvisionedResources

Eq ListEnvironmentProvisionedResourcesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentProvisionedResources

type Rep ListEnvironmentProvisionedResourcesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentProvisionedResources

type Rep ListEnvironmentProvisionedResourcesResponse = D1 ('MetaData "ListEnvironmentProvisionedResourcesResponse" "Amazonka.Proton.ListEnvironmentProvisionedResources" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListEnvironmentProvisionedResourcesResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "provisionedResources") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [ProvisionedResource]))))

newListEnvironmentProvisionedResourcesResponse Source #

Create a value of ListEnvironmentProvisionedResourcesResponse 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:

ListEnvironmentProvisionedResources, listEnvironmentProvisionedResourcesResponse_nextToken - A token that indicates the location of the next environment provisioned resource in the array of provisioned resources, after the current requested list of environment provisioned resources.

$sel:httpStatus:ListEnvironmentProvisionedResourcesResponse', listEnvironmentProvisionedResourcesResponse_httpStatus - The response's http status code.

$sel:provisionedResources:ListEnvironmentProvisionedResourcesResponse', listEnvironmentProvisionedResourcesResponse_provisionedResources - An array of environment provisioned resources.

ListEnvironmentTemplateVersions (Paginated)

data ListEnvironmentTemplateVersions Source #

See: newListEnvironmentTemplateVersions smart constructor.

Instances

Instances details
ToJSON ListEnvironmentTemplateVersions Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentTemplateVersions

ToHeaders ListEnvironmentTemplateVersions Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentTemplateVersions

ToPath ListEnvironmentTemplateVersions Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentTemplateVersions

ToQuery ListEnvironmentTemplateVersions Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentTemplateVersions

AWSPager ListEnvironmentTemplateVersions Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentTemplateVersions

AWSRequest ListEnvironmentTemplateVersions Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentTemplateVersions

Generic ListEnvironmentTemplateVersions Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentTemplateVersions

Associated Types

type Rep ListEnvironmentTemplateVersions :: Type -> Type #

Read ListEnvironmentTemplateVersions Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentTemplateVersions

Show ListEnvironmentTemplateVersions Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentTemplateVersions

NFData ListEnvironmentTemplateVersions Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentTemplateVersions

Eq ListEnvironmentTemplateVersions Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentTemplateVersions

Hashable ListEnvironmentTemplateVersions Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentTemplateVersions

type AWSResponse ListEnvironmentTemplateVersions Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentTemplateVersions

type Rep ListEnvironmentTemplateVersions Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentTemplateVersions

type Rep ListEnvironmentTemplateVersions = D1 ('MetaData "ListEnvironmentTemplateVersions" "Amazonka.Proton.ListEnvironmentTemplateVersions" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListEnvironmentTemplateVersions'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "majorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural))) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "templateName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newListEnvironmentTemplateVersions Source #

Create a value of ListEnvironmentTemplateVersions 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:

ListEnvironmentTemplateVersions, listEnvironmentTemplateVersions_majorVersion - To view a list of minor of versions under a major version of an environment template, include major Version.

To view a list of major versions of an environment template, exclude major Version.

$sel:maxResults:ListEnvironmentTemplateVersions', listEnvironmentTemplateVersions_maxResults - The maximum number of major or minor versions of an environment template to list.

ListEnvironmentTemplateVersions, listEnvironmentTemplateVersions_nextToken - A token that indicates the location of the next major or minor version in the array of major or minor versions of an environment template, after the list of major or minor versions that was previously requested.

ListEnvironmentTemplateVersions, listEnvironmentTemplateVersions_templateName - The name of the environment template.

data ListEnvironmentTemplateVersionsResponse Source #

Instances

Instances details
Generic ListEnvironmentTemplateVersionsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentTemplateVersions

Show ListEnvironmentTemplateVersionsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentTemplateVersions

NFData ListEnvironmentTemplateVersionsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentTemplateVersions

Eq ListEnvironmentTemplateVersionsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentTemplateVersions

type Rep ListEnvironmentTemplateVersionsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentTemplateVersions

type Rep ListEnvironmentTemplateVersionsResponse = D1 ('MetaData "ListEnvironmentTemplateVersionsResponse" "Amazonka.Proton.ListEnvironmentTemplateVersions" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListEnvironmentTemplateVersionsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "templateVersions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [EnvironmentTemplateVersionSummary]))))

newListEnvironmentTemplateVersionsResponse Source #

Create a value of ListEnvironmentTemplateVersionsResponse 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:

ListEnvironmentTemplateVersions, listEnvironmentTemplateVersionsResponse_nextToken - A token that indicates the location of the next major or minor version in the array of major or minor versions of an environment template, after the list of major or minor versions that was previously requested.

$sel:httpStatus:ListEnvironmentTemplateVersionsResponse', listEnvironmentTemplateVersionsResponse_httpStatus - The response's http status code.

$sel:templateVersions:ListEnvironmentTemplateVersionsResponse', listEnvironmentTemplateVersionsResponse_templateVersions - An array of major or minor versions of an environment template detail data.

ListEnvironmentTemplates (Paginated)

data ListEnvironmentTemplates Source #

See: newListEnvironmentTemplates smart constructor.

Instances

Instances details
ToJSON ListEnvironmentTemplates Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentTemplates

ToHeaders ListEnvironmentTemplates Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentTemplates

ToPath ListEnvironmentTemplates Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentTemplates

ToQuery ListEnvironmentTemplates Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentTemplates

AWSPager ListEnvironmentTemplates Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentTemplates

AWSRequest ListEnvironmentTemplates Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentTemplates

Generic ListEnvironmentTemplates Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentTemplates

Associated Types

type Rep ListEnvironmentTemplates :: Type -> Type #

Read ListEnvironmentTemplates Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentTemplates

Show ListEnvironmentTemplates Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentTemplates

NFData ListEnvironmentTemplates Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentTemplates

Eq ListEnvironmentTemplates Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentTemplates

Hashable ListEnvironmentTemplates Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentTemplates

type AWSResponse ListEnvironmentTemplates Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentTemplates

type Rep ListEnvironmentTemplates Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentTemplates

type Rep ListEnvironmentTemplates = D1 ('MetaData "ListEnvironmentTemplates" "Amazonka.Proton.ListEnvironmentTemplates" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListEnvironmentTemplates'" 'PrefixI 'True) (S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newListEnvironmentTemplates :: ListEnvironmentTemplates Source #

Create a value of ListEnvironmentTemplates 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:maxResults:ListEnvironmentTemplates', listEnvironmentTemplates_maxResults - The maximum number of environment templates to list.

ListEnvironmentTemplates, listEnvironmentTemplates_nextToken - A token that indicates the location of the next environment template in the array of environment templates, after the list of environment templates that was previously requested.

data ListEnvironmentTemplatesResponse Source #

See: newListEnvironmentTemplatesResponse smart constructor.

Instances

Instances details
Generic ListEnvironmentTemplatesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentTemplates

Associated Types

type Rep ListEnvironmentTemplatesResponse :: Type -> Type #

Show ListEnvironmentTemplatesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentTemplates

NFData ListEnvironmentTemplatesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentTemplates

Eq ListEnvironmentTemplatesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentTemplates

type Rep ListEnvironmentTemplatesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironmentTemplates

type Rep ListEnvironmentTemplatesResponse = D1 ('MetaData "ListEnvironmentTemplatesResponse" "Amazonka.Proton.ListEnvironmentTemplates" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListEnvironmentTemplatesResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "templates") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [EnvironmentTemplateSummary]))))

newListEnvironmentTemplatesResponse Source #

Create a value of ListEnvironmentTemplatesResponse 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:

ListEnvironmentTemplates, listEnvironmentTemplatesResponse_nextToken - A token that indicates the location of the next environment template in the array of environment templates, after the current requested list of environment templates.

$sel:httpStatus:ListEnvironmentTemplatesResponse', listEnvironmentTemplatesResponse_httpStatus - The response's http status code.

$sel:templates:ListEnvironmentTemplatesResponse', listEnvironmentTemplatesResponse_templates - An array of environment templates with detail data.

ListEnvironments (Paginated)

data ListEnvironments Source #

See: newListEnvironments smart constructor.

Instances

Instances details
ToJSON ListEnvironments Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironments

ToHeaders ListEnvironments Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironments

ToPath ListEnvironments Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironments

ToQuery ListEnvironments Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironments

AWSPager ListEnvironments Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironments

AWSRequest ListEnvironments Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironments

Associated Types

type AWSResponse ListEnvironments #

Generic ListEnvironments Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironments

Associated Types

type Rep ListEnvironments :: Type -> Type #

Read ListEnvironments Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironments

Show ListEnvironments Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironments

NFData ListEnvironments Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironments

Methods

rnf :: ListEnvironments -> () #

Eq ListEnvironments Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironments

Hashable ListEnvironments Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironments

type AWSResponse ListEnvironments Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironments

type Rep ListEnvironments Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironments

type Rep ListEnvironments = D1 ('MetaData "ListEnvironments" "Amazonka.Proton.ListEnvironments" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListEnvironments'" 'PrefixI 'True) (S1 ('MetaSel ('Just "environmentTemplates") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [EnvironmentTemplateFilter])) :*: (S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newListEnvironments :: ListEnvironments Source #

Create a value of ListEnvironments 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:environmentTemplates:ListEnvironments', listEnvironments_environmentTemplates - An array of the versions of the environment template.

$sel:maxResults:ListEnvironments', listEnvironments_maxResults - The maximum number of environments to list.

ListEnvironments, listEnvironments_nextToken - A token that indicates the location of the next environment in the array of environments, after the list of environments that was previously requested.

data ListEnvironmentsResponse Source #

See: newListEnvironmentsResponse smart constructor.

Instances

Instances details
Generic ListEnvironmentsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironments

Associated Types

type Rep ListEnvironmentsResponse :: Type -> Type #

Show ListEnvironmentsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironments

NFData ListEnvironmentsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironments

Eq ListEnvironmentsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironments

type Rep ListEnvironmentsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListEnvironments

type Rep ListEnvironmentsResponse = D1 ('MetaData "ListEnvironmentsResponse" "Amazonka.Proton.ListEnvironments" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListEnvironmentsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "environments") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [EnvironmentSummary]))))

newListEnvironmentsResponse Source #

Create a value of ListEnvironmentsResponse 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:

ListEnvironments, listEnvironmentsResponse_nextToken - A token that indicates the location of the next environment in the array of environments, after the current requested list of environments.

$sel:httpStatus:ListEnvironmentsResponse', listEnvironmentsResponse_httpStatus - The response's http status code.

$sel:environments:ListEnvironmentsResponse', listEnvironmentsResponse_environments - An array of environment detail data summaries.

ListRepositories (Paginated)

data ListRepositories Source #

See: newListRepositories smart constructor.

Instances

Instances details
ToJSON ListRepositories Source # 
Instance details

Defined in Amazonka.Proton.ListRepositories

ToHeaders ListRepositories Source # 
Instance details

Defined in Amazonka.Proton.ListRepositories

ToPath ListRepositories Source # 
Instance details

Defined in Amazonka.Proton.ListRepositories

ToQuery ListRepositories Source # 
Instance details

Defined in Amazonka.Proton.ListRepositories

AWSPager ListRepositories Source # 
Instance details

Defined in Amazonka.Proton.ListRepositories

AWSRequest ListRepositories Source # 
Instance details

Defined in Amazonka.Proton.ListRepositories

Associated Types

type AWSResponse ListRepositories #

Generic ListRepositories Source # 
Instance details

Defined in Amazonka.Proton.ListRepositories

Associated Types

type Rep ListRepositories :: Type -> Type #

Read ListRepositories Source # 
Instance details

Defined in Amazonka.Proton.ListRepositories

Show ListRepositories Source # 
Instance details

Defined in Amazonka.Proton.ListRepositories

NFData ListRepositories Source # 
Instance details

Defined in Amazonka.Proton.ListRepositories

Methods

rnf :: ListRepositories -> () #

Eq ListRepositories Source # 
Instance details

Defined in Amazonka.Proton.ListRepositories

Hashable ListRepositories Source # 
Instance details

Defined in Amazonka.Proton.ListRepositories

type AWSResponse ListRepositories Source # 
Instance details

Defined in Amazonka.Proton.ListRepositories

type Rep ListRepositories Source # 
Instance details

Defined in Amazonka.Proton.ListRepositories

type Rep ListRepositories = D1 ('MetaData "ListRepositories" "Amazonka.Proton.ListRepositories" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListRepositories'" 'PrefixI 'True) (S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newListRepositories :: ListRepositories Source #

Create a value of ListRepositories 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:maxResults:ListRepositories', listRepositories_maxResults - The maximum number of repositories to list.

ListRepositories, listRepositories_nextToken - A token that indicates the location of the next repository in the array of repositories, after the list of repositories previously requested.

data ListRepositoriesResponse Source #

See: newListRepositoriesResponse smart constructor.

Instances

Instances details
Generic ListRepositoriesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListRepositories

Associated Types

type Rep ListRepositoriesResponse :: Type -> Type #

Read ListRepositoriesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListRepositories

Show ListRepositoriesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListRepositories

NFData ListRepositoriesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListRepositories

Eq ListRepositoriesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListRepositories

type Rep ListRepositoriesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListRepositories

type Rep ListRepositoriesResponse = D1 ('MetaData "ListRepositoriesResponse" "Amazonka.Proton.ListRepositories" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListRepositoriesResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "repositories") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [RepositorySummary]))))

newListRepositoriesResponse Source #

Create a value of ListRepositoriesResponse 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:

ListRepositories, listRepositoriesResponse_nextToken - A token that indicates the location of the next repository in the array of repositories, after the current requested list of repositories.

$sel:httpStatus:ListRepositoriesResponse', listRepositoriesResponse_httpStatus - The response's http status code.

$sel:repositories:ListRepositoriesResponse', listRepositoriesResponse_repositories - An array of repository links.

ListRepositorySyncDefinitions (Paginated)

data ListRepositorySyncDefinitions Source #

See: newListRepositorySyncDefinitions smart constructor.

Instances

Instances details
ToJSON ListRepositorySyncDefinitions Source # 
Instance details

Defined in Amazonka.Proton.ListRepositorySyncDefinitions

ToHeaders ListRepositorySyncDefinitions Source # 
Instance details

Defined in Amazonka.Proton.ListRepositorySyncDefinitions

ToPath ListRepositorySyncDefinitions Source # 
Instance details

Defined in Amazonka.Proton.ListRepositorySyncDefinitions

ToQuery ListRepositorySyncDefinitions Source # 
Instance details

Defined in Amazonka.Proton.ListRepositorySyncDefinitions

AWSPager ListRepositorySyncDefinitions Source # 
Instance details

Defined in Amazonka.Proton.ListRepositorySyncDefinitions

AWSRequest ListRepositorySyncDefinitions Source # 
Instance details

Defined in Amazonka.Proton.ListRepositorySyncDefinitions

Generic ListRepositorySyncDefinitions Source # 
Instance details

Defined in Amazonka.Proton.ListRepositorySyncDefinitions

Associated Types

type Rep ListRepositorySyncDefinitions :: Type -> Type #

Read ListRepositorySyncDefinitions Source # 
Instance details

Defined in Amazonka.Proton.ListRepositorySyncDefinitions

Show ListRepositorySyncDefinitions Source # 
Instance details

Defined in Amazonka.Proton.ListRepositorySyncDefinitions

NFData ListRepositorySyncDefinitions Source # 
Instance details

Defined in Amazonka.Proton.ListRepositorySyncDefinitions

Eq ListRepositorySyncDefinitions Source # 
Instance details

Defined in Amazonka.Proton.ListRepositorySyncDefinitions

Hashable ListRepositorySyncDefinitions Source # 
Instance details

Defined in Amazonka.Proton.ListRepositorySyncDefinitions

type AWSResponse ListRepositorySyncDefinitions Source # 
Instance details

Defined in Amazonka.Proton.ListRepositorySyncDefinitions

type Rep ListRepositorySyncDefinitions Source # 
Instance details

Defined in Amazonka.Proton.ListRepositorySyncDefinitions

type Rep ListRepositorySyncDefinitions = D1 ('MetaData "ListRepositorySyncDefinitions" "Amazonka.Proton.ListRepositorySyncDefinitions" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListRepositorySyncDefinitions'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "repositoryName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "repositoryProvider") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 RepositoryProvider) :*: S1 ('MetaSel ('Just "syncType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 SyncType))))

newListRepositorySyncDefinitions Source #

Create a value of ListRepositorySyncDefinitions 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:

ListRepositorySyncDefinitions, listRepositorySyncDefinitions_nextToken - A token that indicates the location of the next repository sync definition in the array of repository sync definitions, after the list of repository sync definitions previously requested.

ListRepositorySyncDefinitions, listRepositorySyncDefinitions_repositoryName - The repository name.

ListRepositorySyncDefinitions, listRepositorySyncDefinitions_repositoryProvider - The repository provider.

$sel:syncType:ListRepositorySyncDefinitions', listRepositorySyncDefinitions_syncType - The sync type. The only supported value is TEMPLATE_SYNC.

data ListRepositorySyncDefinitionsResponse Source #

Instances

Instances details
Generic ListRepositorySyncDefinitionsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListRepositorySyncDefinitions

Read ListRepositorySyncDefinitionsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListRepositorySyncDefinitions

Show ListRepositorySyncDefinitionsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListRepositorySyncDefinitions

NFData ListRepositorySyncDefinitionsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListRepositorySyncDefinitions

Eq ListRepositorySyncDefinitionsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListRepositorySyncDefinitions

type Rep ListRepositorySyncDefinitionsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListRepositorySyncDefinitions

type Rep ListRepositorySyncDefinitionsResponse = D1 ('MetaData "ListRepositorySyncDefinitionsResponse" "Amazonka.Proton.ListRepositorySyncDefinitions" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListRepositorySyncDefinitionsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "syncDefinitions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [RepositorySyncDefinition]))))

newListRepositorySyncDefinitionsResponse Source #

Create a value of ListRepositorySyncDefinitionsResponse 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:

ListRepositorySyncDefinitions, listRepositorySyncDefinitionsResponse_nextToken - A token that indicates the location of the next repository sync definition in the array of repository sync definitions, after the current requested list of repository sync definitions.

$sel:httpStatus:ListRepositorySyncDefinitionsResponse', listRepositorySyncDefinitionsResponse_httpStatus - The response's http status code.

$sel:syncDefinitions:ListRepositorySyncDefinitionsResponse', listRepositorySyncDefinitionsResponse_syncDefinitions - An array of repository sync definitions.

ListServiceInstanceOutputs (Paginated)

data ListServiceInstanceOutputs Source #

See: newListServiceInstanceOutputs smart constructor.

Instances

Instances details
ToJSON ListServiceInstanceOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstanceOutputs

ToHeaders ListServiceInstanceOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstanceOutputs

ToPath ListServiceInstanceOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstanceOutputs

ToQuery ListServiceInstanceOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstanceOutputs

AWSPager ListServiceInstanceOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstanceOutputs

AWSRequest ListServiceInstanceOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstanceOutputs

Generic ListServiceInstanceOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstanceOutputs

Associated Types

type Rep ListServiceInstanceOutputs :: Type -> Type #

Read ListServiceInstanceOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstanceOutputs

Show ListServiceInstanceOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstanceOutputs

NFData ListServiceInstanceOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstanceOutputs

Eq ListServiceInstanceOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstanceOutputs

Hashable ListServiceInstanceOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstanceOutputs

type AWSResponse ListServiceInstanceOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstanceOutputs

type Rep ListServiceInstanceOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstanceOutputs

type Rep ListServiceInstanceOutputs = D1 ('MetaData "ListServiceInstanceOutputs" "Amazonka.Proton.ListServiceInstanceOutputs" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListServiceInstanceOutputs'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "serviceInstanceName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "serviceName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newListServiceInstanceOutputs Source #

Create a value of ListServiceInstanceOutputs 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:

ListServiceInstanceOutputs, listServiceInstanceOutputs_nextToken - A token that indicates the location of the next output in the array of outputs, after the list of outputs that was previously requested.

ListServiceInstanceOutputs, listServiceInstanceOutputs_serviceInstanceName - The name of the service instance whose outputs you want.

ListServiceInstanceOutputs, listServiceInstanceOutputs_serviceName - The name of the service that serviceInstanceName is associated to.

data ListServiceInstanceOutputsResponse Source #

Instances

Instances details
Generic ListServiceInstanceOutputsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstanceOutputs

Associated Types

type Rep ListServiceInstanceOutputsResponse :: Type -> Type #

Show ListServiceInstanceOutputsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstanceOutputs

NFData ListServiceInstanceOutputsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstanceOutputs

Eq ListServiceInstanceOutputsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstanceOutputs

type Rep ListServiceInstanceOutputsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstanceOutputs

type Rep ListServiceInstanceOutputsResponse = D1 ('MetaData "ListServiceInstanceOutputsResponse" "Amazonka.Proton.ListServiceInstanceOutputs" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListServiceInstanceOutputsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "outputs") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [Sensitive Output]))))

newListServiceInstanceOutputsResponse Source #

Create a value of ListServiceInstanceOutputsResponse 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:

ListServiceInstanceOutputs, listServiceInstanceOutputsResponse_nextToken - A token that indicates the location of the next output in the array of outputs, after the current requested list of outputs.

$sel:httpStatus:ListServiceInstanceOutputsResponse', listServiceInstanceOutputsResponse_httpStatus - The response's http status code.

$sel:outputs:ListServiceInstanceOutputsResponse', listServiceInstanceOutputsResponse_outputs - An array of service instance Infrastructure as Code (IaC) outputs.

ListServiceInstanceProvisionedResources (Paginated)

data ListServiceInstanceProvisionedResources Source #

Instances

Instances details
ToJSON ListServiceInstanceProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstanceProvisionedResources

ToHeaders ListServiceInstanceProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstanceProvisionedResources

ToPath ListServiceInstanceProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstanceProvisionedResources

ToQuery ListServiceInstanceProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstanceProvisionedResources

AWSPager ListServiceInstanceProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstanceProvisionedResources

AWSRequest ListServiceInstanceProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstanceProvisionedResources

Generic ListServiceInstanceProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstanceProvisionedResources

Read ListServiceInstanceProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstanceProvisionedResources

Show ListServiceInstanceProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstanceProvisionedResources

NFData ListServiceInstanceProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstanceProvisionedResources

Eq ListServiceInstanceProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstanceProvisionedResources

Hashable ListServiceInstanceProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstanceProvisionedResources

type AWSResponse ListServiceInstanceProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstanceProvisionedResources

type Rep ListServiceInstanceProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstanceProvisionedResources

type Rep ListServiceInstanceProvisionedResources = D1 ('MetaData "ListServiceInstanceProvisionedResources" "Amazonka.Proton.ListServiceInstanceProvisionedResources" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListServiceInstanceProvisionedResources'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "serviceInstanceName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "serviceName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newListServiceInstanceProvisionedResources Source #

Create a value of ListServiceInstanceProvisionedResources 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:

ListServiceInstanceProvisionedResources, listServiceInstanceProvisionedResources_nextToken - A token that indicates the location of the next provisioned resource in the array of provisioned resources, after the list of provisioned resources that was previously requested.

ListServiceInstanceProvisionedResources, listServiceInstanceProvisionedResources_serviceInstanceName - The name of the service instance whose provisioned resources you want.

ListServiceInstanceProvisionedResources, listServiceInstanceProvisionedResources_serviceName - The name of the service that serviceInstanceName is associated to.

data ListServiceInstanceProvisionedResourcesResponse Source #

Instances

Instances details
Generic ListServiceInstanceProvisionedResourcesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstanceProvisionedResources

Read ListServiceInstanceProvisionedResourcesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstanceProvisionedResources

Show ListServiceInstanceProvisionedResourcesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstanceProvisionedResources

NFData ListServiceInstanceProvisionedResourcesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstanceProvisionedResources

Eq ListServiceInstanceProvisionedResourcesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstanceProvisionedResources

type Rep ListServiceInstanceProvisionedResourcesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstanceProvisionedResources

type Rep ListServiceInstanceProvisionedResourcesResponse = D1 ('MetaData "ListServiceInstanceProvisionedResourcesResponse" "Amazonka.Proton.ListServiceInstanceProvisionedResources" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListServiceInstanceProvisionedResourcesResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "provisionedResources") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [ProvisionedResource]))))

newListServiceInstanceProvisionedResourcesResponse Source #

Create a value of ListServiceInstanceProvisionedResourcesResponse 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:

ListServiceInstanceProvisionedResources, listServiceInstanceProvisionedResourcesResponse_nextToken - A token that indicates the location of the next provisioned resource in the array of provisioned resources, after the current requested list of provisioned resources.

$sel:httpStatus:ListServiceInstanceProvisionedResourcesResponse', listServiceInstanceProvisionedResourcesResponse_httpStatus - The response's http status code.

$sel:provisionedResources:ListServiceInstanceProvisionedResourcesResponse', listServiceInstanceProvisionedResourcesResponse_provisionedResources - An array of provisioned resources for a service instance.

ListServiceInstances (Paginated)

data ListServiceInstances Source #

See: newListServiceInstances smart constructor.

Instances

Instances details
ToJSON ListServiceInstances Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstances

ToHeaders ListServiceInstances Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstances

ToPath ListServiceInstances Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstances

ToQuery ListServiceInstances Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstances

AWSPager ListServiceInstances Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstances

AWSRequest ListServiceInstances Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstances

Associated Types

type AWSResponse ListServiceInstances #

Generic ListServiceInstances Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstances

Associated Types

type Rep ListServiceInstances :: Type -> Type #

Read ListServiceInstances Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstances

Show ListServiceInstances Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstances

NFData ListServiceInstances Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstances

Methods

rnf :: ListServiceInstances -> () #

Eq ListServiceInstances Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstances

Hashable ListServiceInstances Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstances

type AWSResponse ListServiceInstances Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstances

type Rep ListServiceInstances Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstances

newListServiceInstances :: ListServiceInstances Source #

Create a value of ListServiceInstances 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:filters:ListServiceInstances', listServiceInstances_filters - An array of filtering criteria that scope down the result list. By default, all service instances in the Amazon Web Services account are returned.

$sel:maxResults:ListServiceInstances', listServiceInstances_maxResults - The maximum number of service instances to list.

ListServiceInstances, listServiceInstances_nextToken - A token that indicates the location of the next service in the array of service instances, after the list of service instances that was previously requested.

ListServiceInstances, listServiceInstances_serviceName - The name of the service that the service instance belongs to.

$sel:sortBy:ListServiceInstances', listServiceInstances_sortBy - The field that the result list is sorted by.

When you choose to sort by serviceName, service instances within each service are sorted by service instance name.

Default: serviceName

$sel:sortOrder:ListServiceInstances', listServiceInstances_sortOrder - Result list sort order.

Default: ASCENDING

data ListServiceInstancesResponse Source #

See: newListServiceInstancesResponse smart constructor.

Instances

Instances details
Generic ListServiceInstancesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstances

Associated Types

type Rep ListServiceInstancesResponse :: Type -> Type #

Show ListServiceInstancesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstances

NFData ListServiceInstancesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstances

Eq ListServiceInstancesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstances

type Rep ListServiceInstancesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServiceInstances

type Rep ListServiceInstancesResponse = D1 ('MetaData "ListServiceInstancesResponse" "Amazonka.Proton.ListServiceInstances" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListServiceInstancesResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "serviceInstances") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [ServiceInstanceSummary]))))

newListServiceInstancesResponse Source #

Create a value of ListServiceInstancesResponse 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:

ListServiceInstances, listServiceInstancesResponse_nextToken - A token that indicates the location of the next service instance in the array of service instances, after the current requested list of service instances.

$sel:httpStatus:ListServiceInstancesResponse', listServiceInstancesResponse_httpStatus - The response's http status code.

$sel:serviceInstances:ListServiceInstancesResponse', listServiceInstancesResponse_serviceInstances - An array of service instances with summary data.

ListServicePipelineOutputs (Paginated)

data ListServicePipelineOutputs Source #

See: newListServicePipelineOutputs smart constructor.

Instances

Instances details
ToJSON ListServicePipelineOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListServicePipelineOutputs

ToHeaders ListServicePipelineOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListServicePipelineOutputs

ToPath ListServicePipelineOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListServicePipelineOutputs

ToQuery ListServicePipelineOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListServicePipelineOutputs

AWSPager ListServicePipelineOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListServicePipelineOutputs

AWSRequest ListServicePipelineOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListServicePipelineOutputs

Generic ListServicePipelineOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListServicePipelineOutputs

Associated Types

type Rep ListServicePipelineOutputs :: Type -> Type #

Read ListServicePipelineOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListServicePipelineOutputs

Show ListServicePipelineOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListServicePipelineOutputs

NFData ListServicePipelineOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListServicePipelineOutputs

Eq ListServicePipelineOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListServicePipelineOutputs

Hashable ListServicePipelineOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListServicePipelineOutputs

type AWSResponse ListServicePipelineOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListServicePipelineOutputs

type Rep ListServicePipelineOutputs Source # 
Instance details

Defined in Amazonka.Proton.ListServicePipelineOutputs

type Rep ListServicePipelineOutputs = D1 ('MetaData "ListServicePipelineOutputs" "Amazonka.Proton.ListServicePipelineOutputs" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListServicePipelineOutputs'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "serviceName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newListServicePipelineOutputs Source #

Create a value of ListServicePipelineOutputs 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:

ListServicePipelineOutputs, listServicePipelineOutputs_nextToken - A token that indicates the location of the next output in the array of outputs, after the list of outputs that was previously requested.

ListServicePipelineOutputs, listServicePipelineOutputs_serviceName - The name of the service whose pipeline's outputs you want.

data ListServicePipelineOutputsResponse Source #

Instances

Instances details
Generic ListServicePipelineOutputsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServicePipelineOutputs

Associated Types

type Rep ListServicePipelineOutputsResponse :: Type -> Type #

Show ListServicePipelineOutputsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServicePipelineOutputs

NFData ListServicePipelineOutputsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServicePipelineOutputs

Eq ListServicePipelineOutputsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServicePipelineOutputs

type Rep ListServicePipelineOutputsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServicePipelineOutputs

type Rep ListServicePipelineOutputsResponse = D1 ('MetaData "ListServicePipelineOutputsResponse" "Amazonka.Proton.ListServicePipelineOutputs" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListServicePipelineOutputsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "outputs") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [Sensitive Output]))))

newListServicePipelineOutputsResponse Source #

Create a value of ListServicePipelineOutputsResponse 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:

ListServicePipelineOutputs, listServicePipelineOutputsResponse_nextToken - A token that indicates the location of the next output in the array of outputs, after the current requested list of outputs.

$sel:httpStatus:ListServicePipelineOutputsResponse', listServicePipelineOutputsResponse_httpStatus - The response's http status code.

$sel:outputs:ListServicePipelineOutputsResponse', listServicePipelineOutputsResponse_outputs - An array of service pipeline Infrastructure as Code (IaC) outputs.

ListServicePipelineProvisionedResources (Paginated)

data ListServicePipelineProvisionedResources Source #

Instances

Instances details
ToJSON ListServicePipelineProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListServicePipelineProvisionedResources

ToHeaders ListServicePipelineProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListServicePipelineProvisionedResources

ToPath ListServicePipelineProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListServicePipelineProvisionedResources

ToQuery ListServicePipelineProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListServicePipelineProvisionedResources

AWSPager ListServicePipelineProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListServicePipelineProvisionedResources

AWSRequest ListServicePipelineProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListServicePipelineProvisionedResources

Generic ListServicePipelineProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListServicePipelineProvisionedResources

Read ListServicePipelineProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListServicePipelineProvisionedResources

Show ListServicePipelineProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListServicePipelineProvisionedResources

NFData ListServicePipelineProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListServicePipelineProvisionedResources

Eq ListServicePipelineProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListServicePipelineProvisionedResources

Hashable ListServicePipelineProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListServicePipelineProvisionedResources

type AWSResponse ListServicePipelineProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListServicePipelineProvisionedResources

type Rep ListServicePipelineProvisionedResources Source # 
Instance details

Defined in Amazonka.Proton.ListServicePipelineProvisionedResources

type Rep ListServicePipelineProvisionedResources = D1 ('MetaData "ListServicePipelineProvisionedResources" "Amazonka.Proton.ListServicePipelineProvisionedResources" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListServicePipelineProvisionedResources'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "serviceName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newListServicePipelineProvisionedResources Source #

Create a value of ListServicePipelineProvisionedResources 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:

ListServicePipelineProvisionedResources, listServicePipelineProvisionedResources_nextToken - A token that indicates the location of the next provisioned resource in the array of provisioned resources, after the list of provisioned resources that was previously requested.

ListServicePipelineProvisionedResources, listServicePipelineProvisionedResources_serviceName - The name of the service whose pipeline's provisioned resources you want.

data ListServicePipelineProvisionedResourcesResponse Source #

Instances

Instances details
Generic ListServicePipelineProvisionedResourcesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServicePipelineProvisionedResources

Read ListServicePipelineProvisionedResourcesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServicePipelineProvisionedResources

Show ListServicePipelineProvisionedResourcesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServicePipelineProvisionedResources

NFData ListServicePipelineProvisionedResourcesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServicePipelineProvisionedResources

Eq ListServicePipelineProvisionedResourcesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServicePipelineProvisionedResources

type Rep ListServicePipelineProvisionedResourcesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServicePipelineProvisionedResources

type Rep ListServicePipelineProvisionedResourcesResponse = D1 ('MetaData "ListServicePipelineProvisionedResourcesResponse" "Amazonka.Proton.ListServicePipelineProvisionedResources" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListServicePipelineProvisionedResourcesResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "provisionedResources") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [ProvisionedResource]))))

newListServicePipelineProvisionedResourcesResponse Source #

Create a value of ListServicePipelineProvisionedResourcesResponse 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:

ListServicePipelineProvisionedResources, listServicePipelineProvisionedResourcesResponse_nextToken - A token that indicates the location of the next provisioned resource in the array of provisioned resources, after the current requested list of provisioned resources.

$sel:httpStatus:ListServicePipelineProvisionedResourcesResponse', listServicePipelineProvisionedResourcesResponse_httpStatus - The response's http status code.

$sel:provisionedResources:ListServicePipelineProvisionedResourcesResponse', listServicePipelineProvisionedResourcesResponse_provisionedResources - An array of provisioned resources for a service and pipeline.

ListServiceTemplateVersions (Paginated)

data ListServiceTemplateVersions Source #

See: newListServiceTemplateVersions smart constructor.

Instances

Instances details
ToJSON ListServiceTemplateVersions Source # 
Instance details

Defined in Amazonka.Proton.ListServiceTemplateVersions

ToHeaders ListServiceTemplateVersions Source # 
Instance details

Defined in Amazonka.Proton.ListServiceTemplateVersions

ToPath ListServiceTemplateVersions Source # 
Instance details

Defined in Amazonka.Proton.ListServiceTemplateVersions

ToQuery ListServiceTemplateVersions Source # 
Instance details

Defined in Amazonka.Proton.ListServiceTemplateVersions

AWSPager ListServiceTemplateVersions Source # 
Instance details

Defined in Amazonka.Proton.ListServiceTemplateVersions

AWSRequest ListServiceTemplateVersions Source # 
Instance details

Defined in Amazonka.Proton.ListServiceTemplateVersions

Generic ListServiceTemplateVersions Source # 
Instance details

Defined in Amazonka.Proton.ListServiceTemplateVersions

Associated Types

type Rep ListServiceTemplateVersions :: Type -> Type #

Read ListServiceTemplateVersions Source # 
Instance details

Defined in Amazonka.Proton.ListServiceTemplateVersions

Show ListServiceTemplateVersions Source # 
Instance details

Defined in Amazonka.Proton.ListServiceTemplateVersions

NFData ListServiceTemplateVersions Source # 
Instance details

Defined in Amazonka.Proton.ListServiceTemplateVersions

Eq ListServiceTemplateVersions Source # 
Instance details

Defined in Amazonka.Proton.ListServiceTemplateVersions

Hashable ListServiceTemplateVersions Source # 
Instance details

Defined in Amazonka.Proton.ListServiceTemplateVersions

type AWSResponse ListServiceTemplateVersions Source # 
Instance details

Defined in Amazonka.Proton.ListServiceTemplateVersions

type Rep ListServiceTemplateVersions Source # 
Instance details

Defined in Amazonka.Proton.ListServiceTemplateVersions

type Rep ListServiceTemplateVersions = D1 ('MetaData "ListServiceTemplateVersions" "Amazonka.Proton.ListServiceTemplateVersions" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListServiceTemplateVersions'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "majorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural))) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "templateName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newListServiceTemplateVersions Source #

Create a value of ListServiceTemplateVersions 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:

ListServiceTemplateVersions, listServiceTemplateVersions_majorVersion - To view a list of minor of versions under a major version of a service template, include major Version.

To view a list of major versions of a service template, exclude major Version.

$sel:maxResults:ListServiceTemplateVersions', listServiceTemplateVersions_maxResults - The maximum number of major or minor versions of a service template to list.

ListServiceTemplateVersions, listServiceTemplateVersions_nextToken - A token that indicates the location of the next major or minor version in the array of major or minor versions of a service template, after the list of major or minor versions that was previously requested.

ListServiceTemplateVersions, listServiceTemplateVersions_templateName - The name of the service template.

data ListServiceTemplateVersionsResponse Source #

Instances

Instances details
Generic ListServiceTemplateVersionsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServiceTemplateVersions

Show ListServiceTemplateVersionsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServiceTemplateVersions

NFData ListServiceTemplateVersionsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServiceTemplateVersions

Eq ListServiceTemplateVersionsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServiceTemplateVersions

type Rep ListServiceTemplateVersionsResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServiceTemplateVersions

type Rep ListServiceTemplateVersionsResponse = D1 ('MetaData "ListServiceTemplateVersionsResponse" "Amazonka.Proton.ListServiceTemplateVersions" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListServiceTemplateVersionsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "templateVersions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [ServiceTemplateVersionSummary]))))

newListServiceTemplateVersionsResponse Source #

Create a value of ListServiceTemplateVersionsResponse 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:

ListServiceTemplateVersions, listServiceTemplateVersionsResponse_nextToken - A token that indicates the location of the next major or minor version in the array of major or minor versions of a service template, after the current requested list of service major or minor versions.

$sel:httpStatus:ListServiceTemplateVersionsResponse', listServiceTemplateVersionsResponse_httpStatus - The response's http status code.

$sel:templateVersions:ListServiceTemplateVersionsResponse', listServiceTemplateVersionsResponse_templateVersions - An array of major or minor versions of a service template with detail data.

ListServiceTemplates (Paginated)

data ListServiceTemplates Source #

See: newListServiceTemplates smart constructor.

Instances

Instances details
ToJSON ListServiceTemplates Source # 
Instance details

Defined in Amazonka.Proton.ListServiceTemplates

ToHeaders ListServiceTemplates Source # 
Instance details

Defined in Amazonka.Proton.ListServiceTemplates

ToPath ListServiceTemplates Source # 
Instance details

Defined in Amazonka.Proton.ListServiceTemplates

ToQuery ListServiceTemplates Source # 
Instance details

Defined in Amazonka.Proton.ListServiceTemplates

AWSPager ListServiceTemplates Source # 
Instance details

Defined in Amazonka.Proton.ListServiceTemplates

AWSRequest ListServiceTemplates Source # 
Instance details

Defined in Amazonka.Proton.ListServiceTemplates

Associated Types

type AWSResponse ListServiceTemplates #

Generic ListServiceTemplates Source # 
Instance details

Defined in Amazonka.Proton.ListServiceTemplates

Associated Types

type Rep ListServiceTemplates :: Type -> Type #

Read ListServiceTemplates Source # 
Instance details

Defined in Amazonka.Proton.ListServiceTemplates

Show ListServiceTemplates Source # 
Instance details

Defined in Amazonka.Proton.ListServiceTemplates

NFData ListServiceTemplates Source # 
Instance details

Defined in Amazonka.Proton.ListServiceTemplates

Methods

rnf :: ListServiceTemplates -> () #

Eq ListServiceTemplates Source # 
Instance details

Defined in Amazonka.Proton.ListServiceTemplates

Hashable ListServiceTemplates Source # 
Instance details

Defined in Amazonka.Proton.ListServiceTemplates

type AWSResponse ListServiceTemplates Source # 
Instance details

Defined in Amazonka.Proton.ListServiceTemplates

type Rep ListServiceTemplates Source # 
Instance details

Defined in Amazonka.Proton.ListServiceTemplates

type Rep ListServiceTemplates = D1 ('MetaData "ListServiceTemplates" "Amazonka.Proton.ListServiceTemplates" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListServiceTemplates'" 'PrefixI 'True) (S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newListServiceTemplates :: ListServiceTemplates Source #

Create a value of ListServiceTemplates 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:maxResults:ListServiceTemplates', listServiceTemplates_maxResults - The maximum number of service templates to list.

ListServiceTemplates, listServiceTemplates_nextToken - A token that indicates the location of the next service template in the array of service templates, after the list of service templates previously requested.

data ListServiceTemplatesResponse Source #

See: newListServiceTemplatesResponse smart constructor.

Instances

Instances details
Generic ListServiceTemplatesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServiceTemplates

Associated Types

type Rep ListServiceTemplatesResponse :: Type -> Type #

Show ListServiceTemplatesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServiceTemplates

NFData ListServiceTemplatesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServiceTemplates

Eq ListServiceTemplatesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServiceTemplates

type Rep ListServiceTemplatesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServiceTemplates

type Rep ListServiceTemplatesResponse = D1 ('MetaData "ListServiceTemplatesResponse" "Amazonka.Proton.ListServiceTemplates" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListServiceTemplatesResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "templates") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [ServiceTemplateSummary]))))

newListServiceTemplatesResponse Source #

Create a value of ListServiceTemplatesResponse 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:

ListServiceTemplates, listServiceTemplatesResponse_nextToken - A token that indicates the location of the next service template in the array of service templates, after the current requested list of service templates.

$sel:httpStatus:ListServiceTemplatesResponse', listServiceTemplatesResponse_httpStatus - The response's http status code.

$sel:templates:ListServiceTemplatesResponse', listServiceTemplatesResponse_templates - An array of service templates with detail data.

ListServices (Paginated)

data ListServices Source #

See: newListServices smart constructor.

Instances

Instances details
ToJSON ListServices Source # 
Instance details

Defined in Amazonka.Proton.ListServices

ToHeaders ListServices Source # 
Instance details

Defined in Amazonka.Proton.ListServices

ToPath ListServices Source # 
Instance details

Defined in Amazonka.Proton.ListServices

ToQuery ListServices Source # 
Instance details

Defined in Amazonka.Proton.ListServices

AWSPager ListServices Source # 
Instance details

Defined in Amazonka.Proton.ListServices

AWSRequest ListServices Source # 
Instance details

Defined in Amazonka.Proton.ListServices

Associated Types

type AWSResponse ListServices #

Generic ListServices Source # 
Instance details

Defined in Amazonka.Proton.ListServices

Associated Types

type Rep ListServices :: Type -> Type #

Read ListServices Source # 
Instance details

Defined in Amazonka.Proton.ListServices

Show ListServices Source # 
Instance details

Defined in Amazonka.Proton.ListServices

NFData ListServices Source # 
Instance details

Defined in Amazonka.Proton.ListServices

Methods

rnf :: ListServices -> () #

Eq ListServices Source # 
Instance details

Defined in Amazonka.Proton.ListServices

Hashable ListServices Source # 
Instance details

Defined in Amazonka.Proton.ListServices

type AWSResponse ListServices Source # 
Instance details

Defined in Amazonka.Proton.ListServices

type Rep ListServices Source # 
Instance details

Defined in Amazonka.Proton.ListServices

type Rep ListServices = D1 ('MetaData "ListServices" "Amazonka.Proton.ListServices" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListServices'" 'PrefixI 'True) (S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newListServices :: ListServices Source #

Create a value of ListServices 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:maxResults:ListServices', listServices_maxResults - The maximum number of services to list.

ListServices, listServices_nextToken - A token that indicates the location of the next service in the array of services, after the list of services that was previously requested.

data ListServicesResponse Source #

See: newListServicesResponse smart constructor.

Instances

Instances details
Generic ListServicesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServices

Associated Types

type Rep ListServicesResponse :: Type -> Type #

Show ListServicesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServices

NFData ListServicesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServices

Methods

rnf :: ListServicesResponse -> () #

Eq ListServicesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServices

type Rep ListServicesResponse Source # 
Instance details

Defined in Amazonka.Proton.ListServices

type Rep ListServicesResponse = D1 ('MetaData "ListServicesResponse" "Amazonka.Proton.ListServices" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListServicesResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "services") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [ServiceSummary]))))

newListServicesResponse Source #

Create a value of ListServicesResponse 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:

ListServices, listServicesResponse_nextToken - A token that indicates the location of the next service in the array of services, after the current requested list of services.

$sel:httpStatus:ListServicesResponse', listServicesResponse_httpStatus - The response's http status code.

$sel:services:ListServicesResponse', listServicesResponse_services - An array of services with summaries of detail data.

ListTagsForResource (Paginated)

data ListTagsForResource Source #

See: newListTagsForResource smart constructor.

Instances

Instances details
ToJSON ListTagsForResource Source # 
Instance details

Defined in Amazonka.Proton.ListTagsForResource

ToHeaders ListTagsForResource Source # 
Instance details

Defined in Amazonka.Proton.ListTagsForResource

ToPath ListTagsForResource Source # 
Instance details

Defined in Amazonka.Proton.ListTagsForResource

ToQuery ListTagsForResource Source # 
Instance details

Defined in Amazonka.Proton.ListTagsForResource

AWSPager ListTagsForResource Source # 
Instance details

Defined in Amazonka.Proton.ListTagsForResource

AWSRequest ListTagsForResource Source # 
Instance details

Defined in Amazonka.Proton.ListTagsForResource

Associated Types

type AWSResponse ListTagsForResource #

Generic ListTagsForResource Source # 
Instance details

Defined in Amazonka.Proton.ListTagsForResource

Associated Types

type Rep ListTagsForResource :: Type -> Type #

Read ListTagsForResource Source # 
Instance details

Defined in Amazonka.Proton.ListTagsForResource

Show ListTagsForResource Source # 
Instance details

Defined in Amazonka.Proton.ListTagsForResource

NFData ListTagsForResource Source # 
Instance details

Defined in Amazonka.Proton.ListTagsForResource

Methods

rnf :: ListTagsForResource -> () #

Eq ListTagsForResource Source # 
Instance details

Defined in Amazonka.Proton.ListTagsForResource

Hashable ListTagsForResource Source # 
Instance details

Defined in Amazonka.Proton.ListTagsForResource

type AWSResponse ListTagsForResource Source # 
Instance details

Defined in Amazonka.Proton.ListTagsForResource

type Rep ListTagsForResource Source # 
Instance details

Defined in Amazonka.Proton.ListTagsForResource

type Rep ListTagsForResource = D1 ('MetaData "ListTagsForResource" "Amazonka.Proton.ListTagsForResource" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListTagsForResource'" 'PrefixI 'True) (S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "resourceArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newListTagsForResource Source #

Create a value of ListTagsForResource 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:maxResults:ListTagsForResource', listTagsForResource_maxResults - The maximum number of tags to list.

ListTagsForResource, listTagsForResource_nextToken - A token that indicates the location of the next resource tag in the array of resource tags, after the list of resource tags that was previously requested.

$sel:resourceArn:ListTagsForResource', listTagsForResource_resourceArn - The Amazon Resource Name (ARN) of the resource for the listed tags.

data ListTagsForResourceResponse Source #

See: newListTagsForResourceResponse smart constructor.

Instances

Instances details
Generic ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.Proton.ListTagsForResource

Associated Types

type Rep ListTagsForResourceResponse :: Type -> Type #

Read ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.Proton.ListTagsForResource

Show ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.Proton.ListTagsForResource

NFData ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.Proton.ListTagsForResource

Eq ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.Proton.ListTagsForResource

type Rep ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.Proton.ListTagsForResource

type Rep ListTagsForResourceResponse = D1 ('MetaData "ListTagsForResourceResponse" "Amazonka.Proton.ListTagsForResource" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListTagsForResourceResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [Tag]))))

newListTagsForResourceResponse Source #

Create a value of ListTagsForResourceResponse 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:

ListTagsForResource, listTagsForResourceResponse_nextToken - A token that indicates the location of the next resource tag in the array of resource tags, after the current requested list of resource tags.

$sel:httpStatus:ListTagsForResourceResponse', listTagsForResourceResponse_httpStatus - The response's http status code.

$sel:tags:ListTagsForResourceResponse', listTagsForResourceResponse_tags - A list of resource tags with detail data.

NotifyResourceDeploymentStatusChange

data NotifyResourceDeploymentStatusChange Source #

Instances

Instances details
ToJSON NotifyResourceDeploymentStatusChange Source # 
Instance details

Defined in Amazonka.Proton.NotifyResourceDeploymentStatusChange

ToHeaders NotifyResourceDeploymentStatusChange Source # 
Instance details

Defined in Amazonka.Proton.NotifyResourceDeploymentStatusChange

ToPath NotifyResourceDeploymentStatusChange Source # 
Instance details

Defined in Amazonka.Proton.NotifyResourceDeploymentStatusChange

ToQuery NotifyResourceDeploymentStatusChange Source # 
Instance details

Defined in Amazonka.Proton.NotifyResourceDeploymentStatusChange

AWSRequest NotifyResourceDeploymentStatusChange Source # 
Instance details

Defined in Amazonka.Proton.NotifyResourceDeploymentStatusChange

Generic NotifyResourceDeploymentStatusChange Source # 
Instance details

Defined in Amazonka.Proton.NotifyResourceDeploymentStatusChange

Show NotifyResourceDeploymentStatusChange Source # 
Instance details

Defined in Amazonka.Proton.NotifyResourceDeploymentStatusChange

NFData NotifyResourceDeploymentStatusChange Source # 
Instance details

Defined in Amazonka.Proton.NotifyResourceDeploymentStatusChange

Eq NotifyResourceDeploymentStatusChange Source # 
Instance details

Defined in Amazonka.Proton.NotifyResourceDeploymentStatusChange

Hashable NotifyResourceDeploymentStatusChange Source # 
Instance details

Defined in Amazonka.Proton.NotifyResourceDeploymentStatusChange

type AWSResponse NotifyResourceDeploymentStatusChange Source # 
Instance details

Defined in Amazonka.Proton.NotifyResourceDeploymentStatusChange

type Rep NotifyResourceDeploymentStatusChange Source # 
Instance details

Defined in Amazonka.Proton.NotifyResourceDeploymentStatusChange

type Rep NotifyResourceDeploymentStatusChange = D1 ('MetaData "NotifyResourceDeploymentStatusChange" "Amazonka.Proton.NotifyResourceDeploymentStatusChange" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "NotifyResourceDeploymentStatusChange'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "deploymentId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "outputs") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Sensitive Output]))) :*: (S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ResourceDeploymentStatus)) :*: (S1 ('MetaSel ('Just "statusMessage") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: S1 ('MetaSel ('Just "resourceArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))))

newNotifyResourceDeploymentStatusChange Source #

Create a value of NotifyResourceDeploymentStatusChange 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:deploymentId:NotifyResourceDeploymentStatusChange', notifyResourceDeploymentStatusChange_deploymentId - The deployment ID for your provisioned resource.

$sel:outputs:NotifyResourceDeploymentStatusChange', notifyResourceDeploymentStatusChange_outputs - The provisioned resource state change detail data that's returned by Proton.

NotifyResourceDeploymentStatusChange, notifyResourceDeploymentStatusChange_status - The status of your provisioned resource.

NotifyResourceDeploymentStatusChange, notifyResourceDeploymentStatusChange_statusMessage - The deployment status message for your provisioned resource.

$sel:resourceArn:NotifyResourceDeploymentStatusChange', notifyResourceDeploymentStatusChange_resourceArn - The provisioned resource Amazon Resource Name (ARN).

data NotifyResourceDeploymentStatusChangeResponse Source #

Instances

Instances details
Generic NotifyResourceDeploymentStatusChangeResponse Source # 
Instance details

Defined in Amazonka.Proton.NotifyResourceDeploymentStatusChange

Read NotifyResourceDeploymentStatusChangeResponse Source # 
Instance details

Defined in Amazonka.Proton.NotifyResourceDeploymentStatusChange

Show NotifyResourceDeploymentStatusChangeResponse Source # 
Instance details

Defined in Amazonka.Proton.NotifyResourceDeploymentStatusChange

NFData NotifyResourceDeploymentStatusChangeResponse Source # 
Instance details

Defined in Amazonka.Proton.NotifyResourceDeploymentStatusChange

Eq NotifyResourceDeploymentStatusChangeResponse Source # 
Instance details

Defined in Amazonka.Proton.NotifyResourceDeploymentStatusChange

type Rep NotifyResourceDeploymentStatusChangeResponse Source # 
Instance details

Defined in Amazonka.Proton.NotifyResourceDeploymentStatusChange

type Rep NotifyResourceDeploymentStatusChangeResponse = D1 ('MetaData "NotifyResourceDeploymentStatusChangeResponse" "Amazonka.Proton.NotifyResourceDeploymentStatusChange" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "NotifyResourceDeploymentStatusChangeResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newNotifyResourceDeploymentStatusChangeResponse Source #

Create a value of NotifyResourceDeploymentStatusChangeResponse 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:httpStatus:NotifyResourceDeploymentStatusChangeResponse', notifyResourceDeploymentStatusChangeResponse_httpStatus - The response's http status code.

RejectEnvironmentAccountConnection

data RejectEnvironmentAccountConnection Source #

Instances

Instances details
ToJSON RejectEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.RejectEnvironmentAccountConnection

ToHeaders RejectEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.RejectEnvironmentAccountConnection

ToPath RejectEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.RejectEnvironmentAccountConnection

ToQuery RejectEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.RejectEnvironmentAccountConnection

AWSRequest RejectEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.RejectEnvironmentAccountConnection

Generic RejectEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.RejectEnvironmentAccountConnection

Associated Types

type Rep RejectEnvironmentAccountConnection :: Type -> Type #

Read RejectEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.RejectEnvironmentAccountConnection

Show RejectEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.RejectEnvironmentAccountConnection

NFData RejectEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.RejectEnvironmentAccountConnection

Eq RejectEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.RejectEnvironmentAccountConnection

Hashable RejectEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.RejectEnvironmentAccountConnection

type AWSResponse RejectEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.RejectEnvironmentAccountConnection

type Rep RejectEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.RejectEnvironmentAccountConnection

type Rep RejectEnvironmentAccountConnection = D1 ('MetaData "RejectEnvironmentAccountConnection" "Amazonka.Proton.RejectEnvironmentAccountConnection" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "RejectEnvironmentAccountConnection'" 'PrefixI 'True) (S1 ('MetaSel ('Just "id") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newRejectEnvironmentAccountConnection Source #

Create a value of RejectEnvironmentAccountConnection 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:

RejectEnvironmentAccountConnection, rejectEnvironmentAccountConnection_id - The ID of the environment account connection to reject.

data RejectEnvironmentAccountConnectionResponse Source #

Instances

Instances details
Generic RejectEnvironmentAccountConnectionResponse Source # 
Instance details

Defined in Amazonka.Proton.RejectEnvironmentAccountConnection

Read RejectEnvironmentAccountConnectionResponse Source # 
Instance details

Defined in Amazonka.Proton.RejectEnvironmentAccountConnection

Show RejectEnvironmentAccountConnectionResponse Source # 
Instance details

Defined in Amazonka.Proton.RejectEnvironmentAccountConnection

NFData RejectEnvironmentAccountConnectionResponse Source # 
Instance details

Defined in Amazonka.Proton.RejectEnvironmentAccountConnection

Eq RejectEnvironmentAccountConnectionResponse Source # 
Instance details

Defined in Amazonka.Proton.RejectEnvironmentAccountConnection

type Rep RejectEnvironmentAccountConnectionResponse Source # 
Instance details

Defined in Amazonka.Proton.RejectEnvironmentAccountConnection

type Rep RejectEnvironmentAccountConnectionResponse = D1 ('MetaData "RejectEnvironmentAccountConnectionResponse" "Amazonka.Proton.RejectEnvironmentAccountConnection" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "RejectEnvironmentAccountConnectionResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "environmentAccountConnection") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 EnvironmentAccountConnection)))

TagResource

data TagResource Source #

See: newTagResource smart constructor.

Constructors

TagResource' Text [Tag] 

Instances

Instances details
ToJSON TagResource Source # 
Instance details

Defined in Amazonka.Proton.TagResource

ToHeaders TagResource Source # 
Instance details

Defined in Amazonka.Proton.TagResource

Methods

toHeaders :: TagResource -> [Header] #

ToPath TagResource Source # 
Instance details

Defined in Amazonka.Proton.TagResource

ToQuery TagResource Source # 
Instance details

Defined in Amazonka.Proton.TagResource

AWSRequest TagResource Source # 
Instance details

Defined in Amazonka.Proton.TagResource

Associated Types

type AWSResponse TagResource #

Generic TagResource Source # 
Instance details

Defined in Amazonka.Proton.TagResource

Associated Types

type Rep TagResource :: Type -> Type #

Read TagResource Source # 
Instance details

Defined in Amazonka.Proton.TagResource

Show TagResource Source # 
Instance details

Defined in Amazonka.Proton.TagResource

NFData TagResource Source # 
Instance details

Defined in Amazonka.Proton.TagResource

Methods

rnf :: TagResource -> () #

Eq TagResource Source # 
Instance details

Defined in Amazonka.Proton.TagResource

Hashable TagResource Source # 
Instance details

Defined in Amazonka.Proton.TagResource

type AWSResponse TagResource Source # 
Instance details

Defined in Amazonka.Proton.TagResource

type Rep TagResource Source # 
Instance details

Defined in Amazonka.Proton.TagResource

type Rep TagResource = D1 ('MetaData "TagResource" "Amazonka.Proton.TagResource" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "TagResource'" 'PrefixI 'True) (S1 ('MetaSel ('Just "resourceArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [Tag])))

newTagResource Source #

Create a value of TagResource 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:resourceArn:TagResource', tagResource_resourceArn - The Amazon Resource Name (ARN) of the Proton resource to apply customer tags to.

$sel:tags:TagResource', tagResource_tags - A list of customer tags to apply to the Proton resource.

data TagResourceResponse Source #

See: newTagResourceResponse smart constructor.

Instances

Instances details
Generic TagResourceResponse Source # 
Instance details

Defined in Amazonka.Proton.TagResource

Associated Types

type Rep TagResourceResponse :: Type -> Type #

Read TagResourceResponse Source # 
Instance details

Defined in Amazonka.Proton.TagResource

Show TagResourceResponse Source # 
Instance details

Defined in Amazonka.Proton.TagResource

NFData TagResourceResponse Source # 
Instance details

Defined in Amazonka.Proton.TagResource

Methods

rnf :: TagResourceResponse -> () #

Eq TagResourceResponse Source # 
Instance details

Defined in Amazonka.Proton.TagResource

type Rep TagResourceResponse Source # 
Instance details

Defined in Amazonka.Proton.TagResource

type Rep TagResourceResponse = D1 ('MetaData "TagResourceResponse" "Amazonka.Proton.TagResource" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "TagResourceResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newTagResourceResponse Source #

Create a value of TagResourceResponse 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:httpStatus:TagResourceResponse', tagResourceResponse_httpStatus - The response's http status code.

UntagResource

data UntagResource Source #

See: newUntagResource smart constructor.

Constructors

UntagResource' Text [Text] 

Instances

Instances details
ToJSON UntagResource Source # 
Instance details

Defined in Amazonka.Proton.UntagResource

ToHeaders UntagResource Source # 
Instance details

Defined in Amazonka.Proton.UntagResource

ToPath UntagResource Source # 
Instance details

Defined in Amazonka.Proton.UntagResource

ToQuery UntagResource Source # 
Instance details

Defined in Amazonka.Proton.UntagResource

AWSRequest UntagResource Source # 
Instance details

Defined in Amazonka.Proton.UntagResource

Associated Types

type AWSResponse UntagResource #

Generic UntagResource Source # 
Instance details

Defined in Amazonka.Proton.UntagResource

Associated Types

type Rep UntagResource :: Type -> Type #

Read UntagResource Source # 
Instance details

Defined in Amazonka.Proton.UntagResource

Show UntagResource Source # 
Instance details

Defined in Amazonka.Proton.UntagResource

NFData UntagResource Source # 
Instance details

Defined in Amazonka.Proton.UntagResource

Methods

rnf :: UntagResource -> () #

Eq UntagResource Source # 
Instance details

Defined in Amazonka.Proton.UntagResource

Hashable UntagResource Source # 
Instance details

Defined in Amazonka.Proton.UntagResource

type AWSResponse UntagResource Source # 
Instance details

Defined in Amazonka.Proton.UntagResource

type Rep UntagResource Source # 
Instance details

Defined in Amazonka.Proton.UntagResource

type Rep UntagResource = D1 ('MetaData "UntagResource" "Amazonka.Proton.UntagResource" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "UntagResource'" 'PrefixI 'True) (S1 ('MetaSel ('Just "resourceArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "tagKeys") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [Text])))

newUntagResource Source #

Create a value of UntagResource 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:resourceArn:UntagResource', untagResource_resourceArn - The Amazon Resource Name (ARN) of the resource to remove customer tags from.

$sel:tagKeys:UntagResource', untagResource_tagKeys - A list of customer tag keys that indicate the customer tags to be removed from the resource.

data UntagResourceResponse Source #

See: newUntagResourceResponse smart constructor.

Instances

Instances details
Generic UntagResourceResponse Source # 
Instance details

Defined in Amazonka.Proton.UntagResource

Associated Types

type Rep UntagResourceResponse :: Type -> Type #

Read UntagResourceResponse Source # 
Instance details

Defined in Amazonka.Proton.UntagResource

Show UntagResourceResponse Source # 
Instance details

Defined in Amazonka.Proton.UntagResource

NFData UntagResourceResponse Source # 
Instance details

Defined in Amazonka.Proton.UntagResource

Methods

rnf :: UntagResourceResponse -> () #

Eq UntagResourceResponse Source # 
Instance details

Defined in Amazonka.Proton.UntagResource

type Rep UntagResourceResponse Source # 
Instance details

Defined in Amazonka.Proton.UntagResource

type Rep UntagResourceResponse = D1 ('MetaData "UntagResourceResponse" "Amazonka.Proton.UntagResource" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "UntagResourceResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newUntagResourceResponse Source #

Create a value of UntagResourceResponse 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:httpStatus:UntagResourceResponse', untagResourceResponse_httpStatus - The response's http status code.

UpdateAccountSettings

data UpdateAccountSettings Source #

See: newUpdateAccountSettings smart constructor.

Instances

Instances details
ToJSON UpdateAccountSettings Source # 
Instance details

Defined in Amazonka.Proton.UpdateAccountSettings

ToHeaders UpdateAccountSettings Source # 
Instance details

Defined in Amazonka.Proton.UpdateAccountSettings

ToPath UpdateAccountSettings Source # 
Instance details

Defined in Amazonka.Proton.UpdateAccountSettings

ToQuery UpdateAccountSettings Source # 
Instance details

Defined in Amazonka.Proton.UpdateAccountSettings

AWSRequest UpdateAccountSettings Source # 
Instance details

Defined in Amazonka.Proton.UpdateAccountSettings

Associated Types

type AWSResponse UpdateAccountSettings #

Generic UpdateAccountSettings Source # 
Instance details

Defined in Amazonka.Proton.UpdateAccountSettings

Associated Types

type Rep UpdateAccountSettings :: Type -> Type #

Read UpdateAccountSettings Source # 
Instance details

Defined in Amazonka.Proton.UpdateAccountSettings

Show UpdateAccountSettings Source # 
Instance details

Defined in Amazonka.Proton.UpdateAccountSettings

NFData UpdateAccountSettings Source # 
Instance details

Defined in Amazonka.Proton.UpdateAccountSettings

Methods

rnf :: UpdateAccountSettings -> () #

Eq UpdateAccountSettings Source # 
Instance details

Defined in Amazonka.Proton.UpdateAccountSettings

Hashable UpdateAccountSettings Source # 
Instance details

Defined in Amazonka.Proton.UpdateAccountSettings

type AWSResponse UpdateAccountSettings Source # 
Instance details

Defined in Amazonka.Proton.UpdateAccountSettings

type Rep UpdateAccountSettings Source # 
Instance details

Defined in Amazonka.Proton.UpdateAccountSettings

type Rep UpdateAccountSettings = D1 ('MetaData "UpdateAccountSettings" "Amazonka.Proton.UpdateAccountSettings" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "UpdateAccountSettings'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "deletePipelineProvisioningRepository") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "pipelineCodebuildRoleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "pipelineProvisioningRepository") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe RepositoryBranchInput)) :*: S1 ('MetaSel ('Just "pipelineServiceRoleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newUpdateAccountSettings :: UpdateAccountSettings Source #

Create a value of UpdateAccountSettings 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:deletePipelineProvisioningRepository:UpdateAccountSettings', updateAccountSettings_deletePipelineProvisioningRepository - Set to true to remove a configured pipeline repository from the account settings. Don't set this field if you are updating the configured pipeline repository.

UpdateAccountSettings, updateAccountSettings_pipelineCodebuildRoleArn - The Amazon Resource Name (ARN) of the service role you want to use for provisioning pipelines. Proton assumes this role for CodeBuild-based provisioning.

UpdateAccountSettings, updateAccountSettings_pipelineProvisioningRepository - A linked repository for pipeline provisioning. Specify it if you have environments configured for self-managed provisioning with services that include pipelines. A linked repository is a repository that has been registered with Proton. For more information, see CreateRepository.

To remove a previously configured repository, set deletePipelineProvisioningRepository to true, and don't set pipelineProvisioningRepository.

UpdateAccountSettings, updateAccountSettings_pipelineServiceRoleArn - The Amazon Resource Name (ARN) of the service role you want to use for provisioning pipelines. Assumed by Proton for Amazon Web Services-managed provisioning, and by customer-owned automation for self-managed provisioning.

To remove a previously configured ARN, specify an empty string.

data UpdateAccountSettingsResponse Source #

See: newUpdateAccountSettingsResponse smart constructor.

Instances

Instances details
Generic UpdateAccountSettingsResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateAccountSettings

Associated Types

type Rep UpdateAccountSettingsResponse :: Type -> Type #

Read UpdateAccountSettingsResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateAccountSettings

Show UpdateAccountSettingsResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateAccountSettings

NFData UpdateAccountSettingsResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateAccountSettings

Eq UpdateAccountSettingsResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateAccountSettings

type Rep UpdateAccountSettingsResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateAccountSettings

type Rep UpdateAccountSettingsResponse = D1 ('MetaData "UpdateAccountSettingsResponse" "Amazonka.Proton.UpdateAccountSettings" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "UpdateAccountSettingsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "accountSettings") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 AccountSettings)))

newUpdateAccountSettingsResponse Source #

Create a value of UpdateAccountSettingsResponse 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:httpStatus:UpdateAccountSettingsResponse', updateAccountSettingsResponse_httpStatus - The response's http status code.

$sel:accountSettings:UpdateAccountSettingsResponse', updateAccountSettingsResponse_accountSettings - The Proton pipeline service role and repository data shared across the Amazon Web Services account.

UpdateComponent

data UpdateComponent Source #

See: newUpdateComponent smart constructor.

Instances

Instances details
ToJSON UpdateComponent Source # 
Instance details

Defined in Amazonka.Proton.UpdateComponent

ToHeaders UpdateComponent Source # 
Instance details

Defined in Amazonka.Proton.UpdateComponent

ToPath UpdateComponent Source # 
Instance details

Defined in Amazonka.Proton.UpdateComponent

ToQuery UpdateComponent Source # 
Instance details

Defined in Amazonka.Proton.UpdateComponent

AWSRequest UpdateComponent Source # 
Instance details

Defined in Amazonka.Proton.UpdateComponent

Associated Types

type AWSResponse UpdateComponent #

Generic UpdateComponent Source # 
Instance details

Defined in Amazonka.Proton.UpdateComponent

Associated Types

type Rep UpdateComponent :: Type -> Type #

Show UpdateComponent Source # 
Instance details

Defined in Amazonka.Proton.UpdateComponent

NFData UpdateComponent Source # 
Instance details

Defined in Amazonka.Proton.UpdateComponent

Methods

rnf :: UpdateComponent -> () #

Eq UpdateComponent Source # 
Instance details

Defined in Amazonka.Proton.UpdateComponent

Hashable UpdateComponent Source # 
Instance details

Defined in Amazonka.Proton.UpdateComponent

type AWSResponse UpdateComponent Source # 
Instance details

Defined in Amazonka.Proton.UpdateComponent

type Rep UpdateComponent Source # 
Instance details

Defined in Amazonka.Proton.UpdateComponent

newUpdateComponent Source #

Create a value of UpdateComponent 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:

UpdateComponent, updateComponent_description - An optional customer-provided description of the component.

UpdateComponent, updateComponent_serviceInstanceName - The name of the service instance that you want to attach this component to. Don't specify to keep the component's current service instance attachment. Specify an empty string to detach the component from the service instance it's attached to. Specify non-empty values for both serviceInstanceName and serviceName or for neither of them.

UpdateComponent, updateComponent_serviceName - The name of the service that serviceInstanceName is associated with. Don't specify to keep the component's current service instance attachment. Specify an empty string to detach the component from the service instance it's attached to. Specify non-empty values for both serviceInstanceName and serviceName or for neither of them.

UpdateComponent, updateComponent_serviceSpec - The service spec that you want the component to use to access service inputs. Set this only when the component is attached to a service instance.

$sel:templateFile:UpdateComponent', updateComponent_templateFile - A path to the Infrastructure as Code (IaC) file describing infrastructure that a custom component provisions.

Components support a single IaC file, even if you use Terraform as your template language.

$sel:deploymentType:UpdateComponent', updateComponent_deploymentType - The deployment type. It defines the mode for updating a component, as follows:

[] NONE

In this mode, a deployment doesn't occur. Only the requested metadata parameters are updated. You can only specify description in this mode.

[] CURRENT_VERSION

In this mode, the component is deployed and updated with the new serviceSpec, templateSource, and/or type that you provide. Only requested parameters are updated.

UpdateComponent, updateComponent_name - The name of the component to update.

data UpdateComponentResponse Source #

See: newUpdateComponentResponse smart constructor.

Instances

Instances details
Generic UpdateComponentResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateComponent

Associated Types

type Rep UpdateComponentResponse :: Type -> Type #

Show UpdateComponentResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateComponent

NFData UpdateComponentResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateComponent

Methods

rnf :: UpdateComponentResponse -> () #

Eq UpdateComponentResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateComponent

type Rep UpdateComponentResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateComponent

type Rep UpdateComponentResponse = D1 ('MetaData "UpdateComponentResponse" "Amazonka.Proton.UpdateComponent" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "UpdateComponentResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "component") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Component)))

newUpdateComponentResponse Source #

Create a value of UpdateComponentResponse 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:httpStatus:UpdateComponentResponse', updateComponentResponse_httpStatus - The response's http status code.

$sel:component:UpdateComponentResponse', updateComponentResponse_component - The detailed data of the updated component.

UpdateEnvironment

data UpdateEnvironment Source #

See: newUpdateEnvironment smart constructor.

Instances

Instances details
ToJSON UpdateEnvironment Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironment

ToHeaders UpdateEnvironment Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironment

ToPath UpdateEnvironment Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironment

ToQuery UpdateEnvironment Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironment

AWSRequest UpdateEnvironment Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironment

Associated Types

type AWSResponse UpdateEnvironment #

Generic UpdateEnvironment Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironment

Associated Types

type Rep UpdateEnvironment :: Type -> Type #

Show UpdateEnvironment Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironment

NFData UpdateEnvironment Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironment

Methods

rnf :: UpdateEnvironment -> () #

Eq UpdateEnvironment Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironment

Hashable UpdateEnvironment Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironment

type AWSResponse UpdateEnvironment Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironment

type Rep UpdateEnvironment Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironment

type Rep UpdateEnvironment = D1 ('MetaData "UpdateEnvironment" "Amazonka.Proton.UpdateEnvironment" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "UpdateEnvironment'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "codebuildRoleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "componentRoleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: (S1 ('MetaSel ('Just "environmentAccountConnectionId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "protonServiceRoleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))) :*: ((S1 ('MetaSel ('Just "provisioningRepository") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe RepositoryBranchInput)) :*: (S1 ('MetaSel ('Just "spec") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: S1 ('MetaSel ('Just "templateMajorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: (S1 ('MetaSel ('Just "templateMinorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "deploymentType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 DeploymentUpdateType) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))))

newUpdateEnvironment Source #

Create a value of UpdateEnvironment 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:

UpdateEnvironment, updateEnvironment_codebuildRoleArn - The Amazon Resource Name (ARN) of the IAM service role that allows Proton to provision infrastructure using CodeBuild-based provisioning on your behalf.

UpdateEnvironment, updateEnvironment_componentRoleArn - The Amazon Resource Name (ARN) of the IAM service role that Proton uses when provisioning directly defined components in this environment. It determines the scope of infrastructure that a component can provision.

The environment must have a componentRoleArn to allow directly defined components to be associated with the environment.

For more information about components, see Proton components in the Proton User Guide.

UpdateEnvironment, updateEnvironment_description - A description of the environment update.

UpdateEnvironment, updateEnvironment_environmentAccountConnectionId - The ID of the environment account connection.

You can only update to a new environment account connection if it was created in the same environment account that the current environment account connection was created in and is associated with the current environment.

UpdateEnvironment, updateEnvironment_protonServiceRoleArn - The Amazon Resource Name (ARN) of the Proton service role that allows Proton to make API calls to other services your behalf.

UpdateEnvironment, updateEnvironment_provisioningRepository - The linked repository that you use to host your rendered infrastructure templates for self-managed provisioning. A linked repository is a repository that has been registered with Proton. For more information, see CreateRepository.

UpdateEnvironment, updateEnvironment_spec - The formatted specification that defines the update.

UpdateEnvironment, updateEnvironment_templateMajorVersion - The major version of the environment to update.

UpdateEnvironment, updateEnvironment_templateMinorVersion - The minor version of the environment to update.

$sel:deploymentType:UpdateEnvironment', updateEnvironment_deploymentType - There are four modes for updating an environment. The deploymentType field defines the mode.

[] NONE

In this mode, a deployment doesn't occur. Only the requested metadata parameters are updated.

[] CURRENT_VERSION

In this mode, the environment is deployed and updated with the new spec that you provide. Only requested parameters are updated. Don’t include major or minor version parameters when you use this deployment-type.

[] MINOR_VERSION

In this mode, the environment is deployed and updated with the published, recommended (latest) minor version of the current major version in use, by default. You can also specify a different minor version of the current major version in use.

[] MAJOR_VERSION

In this mode, the environment is deployed and updated with the published, recommended (latest) major and minor version of the current template, by default. You can also specify a different major version that is higher than the major version in use and a minor version (optional).

UpdateEnvironment, updateEnvironment_name - The name of the environment to update.

data UpdateEnvironmentResponse Source #

See: newUpdateEnvironmentResponse smart constructor.

Instances

Instances details
Generic UpdateEnvironmentResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironment

Associated Types

type Rep UpdateEnvironmentResponse :: Type -> Type #

Show UpdateEnvironmentResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironment

NFData UpdateEnvironmentResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironment

Eq UpdateEnvironmentResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironment

type Rep UpdateEnvironmentResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironment

type Rep UpdateEnvironmentResponse = D1 ('MetaData "UpdateEnvironmentResponse" "Amazonka.Proton.UpdateEnvironment" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "UpdateEnvironmentResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "environment") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Environment)))

newUpdateEnvironmentResponse Source #

Create a value of UpdateEnvironmentResponse 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:httpStatus:UpdateEnvironmentResponse', updateEnvironmentResponse_httpStatus - The response's http status code.

$sel:environment:UpdateEnvironmentResponse', updateEnvironmentResponse_environment - The environment detail data that's returned by Proton.

UpdateEnvironmentAccountConnection

data UpdateEnvironmentAccountConnection Source #

Instances

Instances details
ToJSON UpdateEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentAccountConnection

ToHeaders UpdateEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentAccountConnection

ToPath UpdateEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentAccountConnection

ToQuery UpdateEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentAccountConnection

AWSRequest UpdateEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentAccountConnection

Generic UpdateEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentAccountConnection

Associated Types

type Rep UpdateEnvironmentAccountConnection :: Type -> Type #

Read UpdateEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentAccountConnection

Show UpdateEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentAccountConnection

NFData UpdateEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentAccountConnection

Eq UpdateEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentAccountConnection

Hashable UpdateEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentAccountConnection

type AWSResponse UpdateEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentAccountConnection

type Rep UpdateEnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentAccountConnection

type Rep UpdateEnvironmentAccountConnection = D1 ('MetaData "UpdateEnvironmentAccountConnection" "Amazonka.Proton.UpdateEnvironmentAccountConnection" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "UpdateEnvironmentAccountConnection'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "codebuildRoleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "componentRoleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "roleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "id") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newUpdateEnvironmentAccountConnection Source #

Create a value of UpdateEnvironmentAccountConnection 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:

UpdateEnvironmentAccountConnection, updateEnvironmentAccountConnection_codebuildRoleArn - The Amazon Resource Name (ARN) of an IAM service role in the environment account. Proton uses this role to provision infrastructure resources using CodeBuild-based provisioning in the associated environment account.

UpdateEnvironmentAccountConnection, updateEnvironmentAccountConnection_componentRoleArn - The Amazon Resource Name (ARN) of the IAM service role that Proton uses when provisioning directly defined components in the associated environment account. It determines the scope of infrastructure that a component can provision in the account.

The environment account connection must have a componentRoleArn to allow directly defined components to be associated with any environments running in the account.

For more information about components, see Proton components in the Proton User Guide.

UpdateEnvironmentAccountConnection, updateEnvironmentAccountConnection_roleArn - The Amazon Resource Name (ARN) of the IAM service role that's associated with the environment account connection to update.

UpdateEnvironmentAccountConnection, updateEnvironmentAccountConnection_id - The ID of the environment account connection to update.

data UpdateEnvironmentAccountConnectionResponse Source #

Instances

Instances details
Generic UpdateEnvironmentAccountConnectionResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentAccountConnection

Read UpdateEnvironmentAccountConnectionResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentAccountConnection

Show UpdateEnvironmentAccountConnectionResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentAccountConnection

NFData UpdateEnvironmentAccountConnectionResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentAccountConnection

Eq UpdateEnvironmentAccountConnectionResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentAccountConnection

type Rep UpdateEnvironmentAccountConnectionResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentAccountConnection

type Rep UpdateEnvironmentAccountConnectionResponse = D1 ('MetaData "UpdateEnvironmentAccountConnectionResponse" "Amazonka.Proton.UpdateEnvironmentAccountConnection" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "UpdateEnvironmentAccountConnectionResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "environmentAccountConnection") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 EnvironmentAccountConnection)))

UpdateEnvironmentTemplate

data UpdateEnvironmentTemplate Source #

See: newUpdateEnvironmentTemplate smart constructor.

Instances

Instances details
ToJSON UpdateEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentTemplate

ToHeaders UpdateEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentTemplate

ToPath UpdateEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentTemplate

ToQuery UpdateEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentTemplate

AWSRequest UpdateEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentTemplate

Generic UpdateEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentTemplate

Associated Types

type Rep UpdateEnvironmentTemplate :: Type -> Type #

Show UpdateEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentTemplate

NFData UpdateEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentTemplate

Eq UpdateEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentTemplate

Hashable UpdateEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentTemplate

type AWSResponse UpdateEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentTemplate

type Rep UpdateEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentTemplate

type Rep UpdateEnvironmentTemplate = D1 ('MetaData "UpdateEnvironmentTemplate" "Amazonka.Proton.UpdateEnvironmentTemplate" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "UpdateEnvironmentTemplate'" 'PrefixI 'True) (S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: (S1 ('MetaSel ('Just "displayName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newUpdateEnvironmentTemplate Source #

Create a value of UpdateEnvironmentTemplate 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:

UpdateEnvironmentTemplate, updateEnvironmentTemplate_description - A description of the environment template update.

UpdateEnvironmentTemplate, updateEnvironmentTemplate_displayName - The name of the environment template to update as displayed in the developer interface.

UpdateEnvironmentTemplate, updateEnvironmentTemplate_name - The name of the environment template to update.

data UpdateEnvironmentTemplateResponse Source #

See: newUpdateEnvironmentTemplateResponse smart constructor.

Instances

Instances details
Generic UpdateEnvironmentTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentTemplate

Associated Types

type Rep UpdateEnvironmentTemplateResponse :: Type -> Type #

Show UpdateEnvironmentTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentTemplate

NFData UpdateEnvironmentTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentTemplate

Eq UpdateEnvironmentTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentTemplate

type Rep UpdateEnvironmentTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentTemplate

type Rep UpdateEnvironmentTemplateResponse = D1 ('MetaData "UpdateEnvironmentTemplateResponse" "Amazonka.Proton.UpdateEnvironmentTemplate" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "UpdateEnvironmentTemplateResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "environmentTemplate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 EnvironmentTemplate)))

newUpdateEnvironmentTemplateResponse Source #

Create a value of UpdateEnvironmentTemplateResponse 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:httpStatus:UpdateEnvironmentTemplateResponse', updateEnvironmentTemplateResponse_httpStatus - The response's http status code.

$sel:environmentTemplate:UpdateEnvironmentTemplateResponse', updateEnvironmentTemplateResponse_environmentTemplate - The environment template detail data that's returned by Proton.

UpdateEnvironmentTemplateVersion

data UpdateEnvironmentTemplateVersion Source #

See: newUpdateEnvironmentTemplateVersion smart constructor.

Instances

Instances details
ToJSON UpdateEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentTemplateVersion

ToHeaders UpdateEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentTemplateVersion

ToPath UpdateEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentTemplateVersion

ToQuery UpdateEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentTemplateVersion

AWSRequest UpdateEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentTemplateVersion

Generic UpdateEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentTemplateVersion

Associated Types

type Rep UpdateEnvironmentTemplateVersion :: Type -> Type #

Show UpdateEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentTemplateVersion

NFData UpdateEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentTemplateVersion

Eq UpdateEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentTemplateVersion

Hashable UpdateEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentTemplateVersion

type AWSResponse UpdateEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentTemplateVersion

type Rep UpdateEnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentTemplateVersion

type Rep UpdateEnvironmentTemplateVersion = D1 ('MetaData "UpdateEnvironmentTemplateVersion" "Amazonka.Proton.UpdateEnvironmentTemplateVersion" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "UpdateEnvironmentTemplateVersion'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe TemplateVersionStatus))) :*: (S1 ('MetaSel ('Just "majorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "minorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "templateName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))))

newUpdateEnvironmentTemplateVersion Source #

Create a value of UpdateEnvironmentTemplateVersion 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:

UpdateEnvironmentTemplateVersion, updateEnvironmentTemplateVersion_description - A description of environment template version to update.

UpdateEnvironmentTemplateVersion, updateEnvironmentTemplateVersion_status - The status of the environment template minor version to update.

UpdateEnvironmentTemplateVersion, updateEnvironmentTemplateVersion_majorVersion - To update a major version of an environment template, include major Version.

UpdateEnvironmentTemplateVersion, updateEnvironmentTemplateVersion_minorVersion - To update a minor version of an environment template, include minorVersion.

UpdateEnvironmentTemplateVersion, updateEnvironmentTemplateVersion_templateName - The name of the environment template.

data UpdateEnvironmentTemplateVersionResponse Source #

Instances

Instances details
Generic UpdateEnvironmentTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentTemplateVersion

Show UpdateEnvironmentTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentTemplateVersion

NFData UpdateEnvironmentTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentTemplateVersion

Eq UpdateEnvironmentTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentTemplateVersion

type Rep UpdateEnvironmentTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateEnvironmentTemplateVersion

type Rep UpdateEnvironmentTemplateVersionResponse = D1 ('MetaData "UpdateEnvironmentTemplateVersionResponse" "Amazonka.Proton.UpdateEnvironmentTemplateVersion" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "UpdateEnvironmentTemplateVersionResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "environmentTemplateVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 EnvironmentTemplateVersion)))

UpdateService

data UpdateService Source #

See: newUpdateService smart constructor.

Instances

Instances details
ToJSON UpdateService Source # 
Instance details

Defined in Amazonka.Proton.UpdateService

ToHeaders UpdateService Source # 
Instance details

Defined in Amazonka.Proton.UpdateService

ToPath UpdateService Source # 
Instance details

Defined in Amazonka.Proton.UpdateService

ToQuery UpdateService Source # 
Instance details

Defined in Amazonka.Proton.UpdateService

AWSRequest UpdateService Source # 
Instance details

Defined in Amazonka.Proton.UpdateService

Associated Types

type AWSResponse UpdateService #

Generic UpdateService Source # 
Instance details

Defined in Amazonka.Proton.UpdateService

Associated Types

type Rep UpdateService :: Type -> Type #

Show UpdateService Source # 
Instance details

Defined in Amazonka.Proton.UpdateService

NFData UpdateService Source # 
Instance details

Defined in Amazonka.Proton.UpdateService

Methods

rnf :: UpdateService -> () #

Eq UpdateService Source # 
Instance details

Defined in Amazonka.Proton.UpdateService

Hashable UpdateService Source # 
Instance details

Defined in Amazonka.Proton.UpdateService

type AWSResponse UpdateService Source # 
Instance details

Defined in Amazonka.Proton.UpdateService

type Rep UpdateService Source # 
Instance details

Defined in Amazonka.Proton.UpdateService

type Rep UpdateService = D1 ('MetaData "UpdateService" "Amazonka.Proton.UpdateService" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "UpdateService'" 'PrefixI 'True) (S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: (S1 ('MetaSel ('Just "spec") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newUpdateService Source #

Create a value of UpdateService 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:

UpdateService, updateService_description - The edited service description.

UpdateService, updateService_spec - Lists the service instances to add and the existing service instances to remain. Omit the existing service instances to delete from the list. Don't include edits to the existing service instances or pipeline. For more information, see Edit a service in the Proton User Guide.

UpdateService, updateService_name - The name of the service to edit.

data UpdateServiceResponse Source #

See: newUpdateServiceResponse smart constructor.

newUpdateServiceResponse Source #

Create a value of UpdateServiceResponse 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:httpStatus:UpdateServiceResponse', updateServiceResponse_httpStatus - The response's http status code.

$sel:service:UpdateServiceResponse', updateServiceResponse_service - The service detail data that's returned by Proton.

UpdateServiceInstance

data UpdateServiceInstance Source #

See: newUpdateServiceInstance smart constructor.

Instances

Instances details
ToJSON UpdateServiceInstance Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceInstance

ToHeaders UpdateServiceInstance Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceInstance

ToPath UpdateServiceInstance Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceInstance

ToQuery UpdateServiceInstance Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceInstance

AWSRequest UpdateServiceInstance Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceInstance

Associated Types

type AWSResponse UpdateServiceInstance #

Generic UpdateServiceInstance Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceInstance

Associated Types

type Rep UpdateServiceInstance :: Type -> Type #

Show UpdateServiceInstance Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceInstance

NFData UpdateServiceInstance Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceInstance

Methods

rnf :: UpdateServiceInstance -> () #

Eq UpdateServiceInstance Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceInstance

Hashable UpdateServiceInstance Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceInstance

type AWSResponse UpdateServiceInstance Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceInstance

type Rep UpdateServiceInstance Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceInstance

type Rep UpdateServiceInstance = D1 ('MetaData "UpdateServiceInstance" "Amazonka.Proton.UpdateServiceInstance" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "UpdateServiceInstance'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "spec") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: (S1 ('MetaSel ('Just "templateMajorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "templateMinorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: (S1 ('MetaSel ('Just "deploymentType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 DeploymentUpdateType) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "serviceName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))))

newUpdateServiceInstance Source #

Create a value of UpdateServiceInstance 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:

UpdateServiceInstance, updateServiceInstance_spec - The formatted specification that defines the service instance update.

UpdateServiceInstance, updateServiceInstance_templateMajorVersion - The major version of the service template to update.

UpdateServiceInstance, updateServiceInstance_templateMinorVersion - The minor version of the service template to update.

$sel:deploymentType:UpdateServiceInstance', updateServiceInstance_deploymentType - The deployment type. It defines the mode for updating a service instance, as follows:

[] NONE

In this mode, a deployment doesn't occur. Only the requested metadata parameters are updated.

[] CURRENT_VERSION

In this mode, the service instance is deployed and updated with the new spec that you provide. Only requested parameters are updated. Don’t include major or minor version parameters when you use this deployment type.

[] MINOR_VERSION

In this mode, the service instance is deployed and updated with the published, recommended (latest) minor version of the current major version in use, by default. You can also specify a different minor version of the current major version in use.

[] MAJOR_VERSION

In this mode, the service instance is deployed and updated with the published, recommended (latest) major and minor version of the current template, by default. You can specify a different major version that's higher than the major version in use and a minor version.

UpdateServiceInstance, updateServiceInstance_name - The name of the service instance to update.

UpdateServiceInstance, updateServiceInstance_serviceName - The name of the service that the service instance belongs to.

data UpdateServiceInstanceResponse Source #

See: newUpdateServiceInstanceResponse smart constructor.

Instances

Instances details
Generic UpdateServiceInstanceResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceInstance

Associated Types

type Rep UpdateServiceInstanceResponse :: Type -> Type #

Show UpdateServiceInstanceResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceInstance

NFData UpdateServiceInstanceResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceInstance

Eq UpdateServiceInstanceResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceInstance

type Rep UpdateServiceInstanceResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceInstance

type Rep UpdateServiceInstanceResponse = D1 ('MetaData "UpdateServiceInstanceResponse" "Amazonka.Proton.UpdateServiceInstance" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "UpdateServiceInstanceResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "serviceInstance") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ServiceInstance)))

newUpdateServiceInstanceResponse Source #

Create a value of UpdateServiceInstanceResponse 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:httpStatus:UpdateServiceInstanceResponse', updateServiceInstanceResponse_httpStatus - The response's http status code.

$sel:serviceInstance:UpdateServiceInstanceResponse', updateServiceInstanceResponse_serviceInstance - The service instance summary data that's returned by Proton.

UpdateServicePipeline

data UpdateServicePipeline Source #

See: newUpdateServicePipeline smart constructor.

Instances

Instances details
ToJSON UpdateServicePipeline Source # 
Instance details

Defined in Amazonka.Proton.UpdateServicePipeline

ToHeaders UpdateServicePipeline Source # 
Instance details

Defined in Amazonka.Proton.UpdateServicePipeline

ToPath UpdateServicePipeline Source # 
Instance details

Defined in Amazonka.Proton.UpdateServicePipeline

ToQuery UpdateServicePipeline Source # 
Instance details

Defined in Amazonka.Proton.UpdateServicePipeline

AWSRequest UpdateServicePipeline Source # 
Instance details

Defined in Amazonka.Proton.UpdateServicePipeline

Associated Types

type AWSResponse UpdateServicePipeline #

Generic UpdateServicePipeline Source # 
Instance details

Defined in Amazonka.Proton.UpdateServicePipeline

Associated Types

type Rep UpdateServicePipeline :: Type -> Type #

Show UpdateServicePipeline Source # 
Instance details

Defined in Amazonka.Proton.UpdateServicePipeline

NFData UpdateServicePipeline Source # 
Instance details

Defined in Amazonka.Proton.UpdateServicePipeline

Methods

rnf :: UpdateServicePipeline -> () #

Eq UpdateServicePipeline Source # 
Instance details

Defined in Amazonka.Proton.UpdateServicePipeline

Hashable UpdateServicePipeline Source # 
Instance details

Defined in Amazonka.Proton.UpdateServicePipeline

type AWSResponse UpdateServicePipeline Source # 
Instance details

Defined in Amazonka.Proton.UpdateServicePipeline

type Rep UpdateServicePipeline Source # 
Instance details

Defined in Amazonka.Proton.UpdateServicePipeline

type Rep UpdateServicePipeline = D1 ('MetaData "UpdateServicePipeline" "Amazonka.Proton.UpdateServicePipeline" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "UpdateServicePipeline'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "templateMajorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "templateMinorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "deploymentType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 DeploymentUpdateType) :*: (S1 ('MetaSel ('Just "serviceName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "spec") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Sensitive Text))))))

newUpdateServicePipeline Source #

Create a value of UpdateServicePipeline 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:

UpdateServicePipeline, updateServicePipeline_templateMajorVersion - The major version of the service template that was used to create the service that the pipeline is associated with.

UpdateServicePipeline, updateServicePipeline_templateMinorVersion - The minor version of the service template that was used to create the service that the pipeline is associated with.

$sel:deploymentType:UpdateServicePipeline', updateServicePipeline_deploymentType - The deployment type.

There are four modes for updating a service pipeline. The deploymentType field defines the mode.

[] NONE

In this mode, a deployment doesn't occur. Only the requested metadata parameters are updated.

[] CURRENT_VERSION

In this mode, the service pipeline is deployed and updated with the new spec that you provide. Only requested parameters are updated. Don’t include major or minor version parameters when you use this deployment-type.

[] MINOR_VERSION

In this mode, the service pipeline is deployed and updated with the published, recommended (latest) minor version of the current major version in use, by default. You can specify a different minor version of the current major version in use.

[] MAJOR_VERSION

In this mode, the service pipeline is deployed and updated with the published, recommended (latest) major and minor version of the current template, by default. You can specify a different major version that's higher than the major version in use and a minor version.

UpdateServicePipeline, updateServicePipeline_serviceName - The name of the service to that the pipeline is associated with.

UpdateServicePipeline, updateServicePipeline_spec - The spec for the service pipeline to update.

data UpdateServicePipelineResponse Source #

See: newUpdateServicePipelineResponse smart constructor.

Instances

Instances details
Generic UpdateServicePipelineResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateServicePipeline

Associated Types

type Rep UpdateServicePipelineResponse :: Type -> Type #

Show UpdateServicePipelineResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateServicePipeline

NFData UpdateServicePipelineResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateServicePipeline

Eq UpdateServicePipelineResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateServicePipeline

type Rep UpdateServicePipelineResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateServicePipeline

type Rep UpdateServicePipelineResponse = D1 ('MetaData "UpdateServicePipelineResponse" "Amazonka.Proton.UpdateServicePipeline" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "UpdateServicePipelineResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "pipeline") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ServicePipeline)))

newUpdateServicePipelineResponse Source #

Create a value of UpdateServicePipelineResponse 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:httpStatus:UpdateServicePipelineResponse', updateServicePipelineResponse_httpStatus - The response's http status code.

UpdateServicePipelineResponse, updateServicePipelineResponse_pipeline - The pipeline details that are returned by Proton.

UpdateServiceTemplate

data UpdateServiceTemplate Source #

See: newUpdateServiceTemplate smart constructor.

Instances

Instances details
ToJSON UpdateServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceTemplate

ToHeaders UpdateServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceTemplate

ToPath UpdateServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceTemplate

ToQuery UpdateServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceTemplate

AWSRequest UpdateServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceTemplate

Associated Types

type AWSResponse UpdateServiceTemplate #

Generic UpdateServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceTemplate

Associated Types

type Rep UpdateServiceTemplate :: Type -> Type #

Show UpdateServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceTemplate

NFData UpdateServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceTemplate

Methods

rnf :: UpdateServiceTemplate -> () #

Eq UpdateServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceTemplate

Hashable UpdateServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceTemplate

type AWSResponse UpdateServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceTemplate

type Rep UpdateServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceTemplate

type Rep UpdateServiceTemplate = D1 ('MetaData "UpdateServiceTemplate" "Amazonka.Proton.UpdateServiceTemplate" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "UpdateServiceTemplate'" 'PrefixI 'True) (S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: (S1 ('MetaSel ('Just "displayName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newUpdateServiceTemplate Source #

Create a value of UpdateServiceTemplate 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:

UpdateServiceTemplate, updateServiceTemplate_description - A description of the service template update.

UpdateServiceTemplate, updateServiceTemplate_displayName - The name of the service template to update that's displayed in the developer interface.

UpdateServiceTemplate, updateServiceTemplate_name - The name of the service template to update.

data UpdateServiceTemplateResponse Source #

See: newUpdateServiceTemplateResponse smart constructor.

Instances

Instances details
Generic UpdateServiceTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceTemplate

Associated Types

type Rep UpdateServiceTemplateResponse :: Type -> Type #

Show UpdateServiceTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceTemplate

NFData UpdateServiceTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceTemplate

Eq UpdateServiceTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceTemplate

type Rep UpdateServiceTemplateResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceTemplate

type Rep UpdateServiceTemplateResponse = D1 ('MetaData "UpdateServiceTemplateResponse" "Amazonka.Proton.UpdateServiceTemplate" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "UpdateServiceTemplateResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "serviceTemplate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ServiceTemplate)))

newUpdateServiceTemplateResponse Source #

Create a value of UpdateServiceTemplateResponse 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:httpStatus:UpdateServiceTemplateResponse', updateServiceTemplateResponse_httpStatus - The response's http status code.

$sel:serviceTemplate:UpdateServiceTemplateResponse', updateServiceTemplateResponse_serviceTemplate - The service template detail data that's returned by Proton.

UpdateServiceTemplateVersion

data UpdateServiceTemplateVersion Source #

See: newUpdateServiceTemplateVersion smart constructor.

Instances

Instances details
ToJSON UpdateServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceTemplateVersion

ToHeaders UpdateServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceTemplateVersion

ToPath UpdateServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceTemplateVersion

ToQuery UpdateServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceTemplateVersion

AWSRequest UpdateServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceTemplateVersion

Generic UpdateServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceTemplateVersion

Associated Types

type Rep UpdateServiceTemplateVersion :: Type -> Type #

Show UpdateServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceTemplateVersion

NFData UpdateServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceTemplateVersion

Eq UpdateServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceTemplateVersion

Hashable UpdateServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceTemplateVersion

type AWSResponse UpdateServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceTemplateVersion

type Rep UpdateServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceTemplateVersion

type Rep UpdateServiceTemplateVersion = D1 ('MetaData "UpdateServiceTemplateVersion" "Amazonka.Proton.UpdateServiceTemplateVersion" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "UpdateServiceTemplateVersion'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "compatibleEnvironmentTemplates") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty CompatibleEnvironmentTemplateInput))) :*: (S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe TemplateVersionStatus)))) :*: ((S1 ('MetaSel ('Just "supportedComponentSources") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [ServiceTemplateSupportedComponentSourceType])) :*: S1 ('MetaSel ('Just "majorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "minorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "templateName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))))

newUpdateServiceTemplateVersion Source #

Create a value of UpdateServiceTemplateVersion 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:

UpdateServiceTemplateVersion, updateServiceTemplateVersion_compatibleEnvironmentTemplates - An array of environment template objects that are compatible with this service template version. A service instance based on this service template version can run in environments based on compatible templates.

UpdateServiceTemplateVersion, updateServiceTemplateVersion_description - A description of a service template version to update.

UpdateServiceTemplateVersion, updateServiceTemplateVersion_status - The status of the service template minor version to update.

UpdateServiceTemplateVersion, updateServiceTemplateVersion_supportedComponentSources - An array of supported component sources. Components with supported sources can be attached to service instances based on this service template version.

A change to supportedComponentSources doesn't impact existing component attachments to instances based on this template version. A change only affects later associations.

For more information about components, see Proton components in the Proton User Guide.

UpdateServiceTemplateVersion, updateServiceTemplateVersion_majorVersion - To update a major version of a service template, include major Version.

UpdateServiceTemplateVersion, updateServiceTemplateVersion_minorVersion - To update a minor version of a service template, include minorVersion.

UpdateServiceTemplateVersion, updateServiceTemplateVersion_templateName - The name of the service template.

data UpdateServiceTemplateVersionResponse Source #

Instances

Instances details
Generic UpdateServiceTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceTemplateVersion

Show UpdateServiceTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceTemplateVersion

NFData UpdateServiceTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceTemplateVersion

Eq UpdateServiceTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceTemplateVersion

type Rep UpdateServiceTemplateVersionResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateServiceTemplateVersion

type Rep UpdateServiceTemplateVersionResponse = D1 ('MetaData "UpdateServiceTemplateVersionResponse" "Amazonka.Proton.UpdateServiceTemplateVersion" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "UpdateServiceTemplateVersionResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "serviceTemplateVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ServiceTemplateVersion)))

UpdateTemplateSyncConfig

data UpdateTemplateSyncConfig Source #

See: newUpdateTemplateSyncConfig smart constructor.

Instances

Instances details
ToJSON UpdateTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.UpdateTemplateSyncConfig

ToHeaders UpdateTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.UpdateTemplateSyncConfig

ToPath UpdateTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.UpdateTemplateSyncConfig

ToQuery UpdateTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.UpdateTemplateSyncConfig

AWSRequest UpdateTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.UpdateTemplateSyncConfig

Generic UpdateTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.UpdateTemplateSyncConfig

Associated Types

type Rep UpdateTemplateSyncConfig :: Type -> Type #

Read UpdateTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.UpdateTemplateSyncConfig

Show UpdateTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.UpdateTemplateSyncConfig

NFData UpdateTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.UpdateTemplateSyncConfig

Eq UpdateTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.UpdateTemplateSyncConfig

Hashable UpdateTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.UpdateTemplateSyncConfig

type AWSResponse UpdateTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.UpdateTemplateSyncConfig

type Rep UpdateTemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.UpdateTemplateSyncConfig

type Rep UpdateTemplateSyncConfig = D1 ('MetaData "UpdateTemplateSyncConfig" "Amazonka.Proton.UpdateTemplateSyncConfig" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "UpdateTemplateSyncConfig'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "subdirectory") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "branch") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "repositoryName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))) :*: (S1 ('MetaSel ('Just "repositoryProvider") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 RepositoryProvider) :*: (S1 ('MetaSel ('Just "templateName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "templateType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 TemplateType)))))

newUpdateTemplateSyncConfig Source #

Create a value of UpdateTemplateSyncConfig 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:

UpdateTemplateSyncConfig, updateTemplateSyncConfig_subdirectory - A subdirectory path to your template bundle version. When included, limits the template bundle search to this repository directory.

UpdateTemplateSyncConfig, updateTemplateSyncConfig_branch - The repository branch for your template.

UpdateTemplateSyncConfig, updateTemplateSyncConfig_repositoryName - The repository name (for example, myrepos/myrepo).

UpdateTemplateSyncConfig, updateTemplateSyncConfig_repositoryProvider - The repository provider.

UpdateTemplateSyncConfig, updateTemplateSyncConfig_templateName - The synced template name.

UpdateTemplateSyncConfig, updateTemplateSyncConfig_templateType - The synced template type.

data UpdateTemplateSyncConfigResponse Source #

See: newUpdateTemplateSyncConfigResponse smart constructor.

Instances

Instances details
Generic UpdateTemplateSyncConfigResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateTemplateSyncConfig

Associated Types

type Rep UpdateTemplateSyncConfigResponse :: Type -> Type #

Read UpdateTemplateSyncConfigResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateTemplateSyncConfig

Show UpdateTemplateSyncConfigResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateTemplateSyncConfig

NFData UpdateTemplateSyncConfigResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateTemplateSyncConfig

Eq UpdateTemplateSyncConfigResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateTemplateSyncConfig

type Rep UpdateTemplateSyncConfigResponse Source # 
Instance details

Defined in Amazonka.Proton.UpdateTemplateSyncConfig

type Rep UpdateTemplateSyncConfigResponse = D1 ('MetaData "UpdateTemplateSyncConfigResponse" "Amazonka.Proton.UpdateTemplateSyncConfig" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "UpdateTemplateSyncConfigResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "templateSyncConfig") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe TemplateSyncConfig)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newUpdateTemplateSyncConfigResponse Source #

Create a value of UpdateTemplateSyncConfigResponse 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:templateSyncConfig:UpdateTemplateSyncConfigResponse', updateTemplateSyncConfigResponse_templateSyncConfig - The template sync configuration detail data that's returned by Proton.

$sel:httpStatus:UpdateTemplateSyncConfigResponse', updateTemplateSyncConfigResponse_httpStatus - The response's http status code.

Types

ComponentDeploymentUpdateType

newtype ComponentDeploymentUpdateType Source #

Instances

Instances details
FromJSON ComponentDeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.ComponentDeploymentUpdateType

FromJSONKey ComponentDeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.ComponentDeploymentUpdateType

ToJSON ComponentDeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.ComponentDeploymentUpdateType

ToJSONKey ComponentDeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.ComponentDeploymentUpdateType

ToByteString ComponentDeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.ComponentDeploymentUpdateType

ToHeader ComponentDeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.ComponentDeploymentUpdateType

ToLog ComponentDeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.ComponentDeploymentUpdateType

ToQuery ComponentDeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.ComponentDeploymentUpdateType

FromText ComponentDeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.ComponentDeploymentUpdateType

ToText ComponentDeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.ComponentDeploymentUpdateType

FromXML ComponentDeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.ComponentDeploymentUpdateType

ToXML ComponentDeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.ComponentDeploymentUpdateType

Generic ComponentDeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.ComponentDeploymentUpdateType

Associated Types

type Rep ComponentDeploymentUpdateType :: Type -> Type #

Read ComponentDeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.ComponentDeploymentUpdateType

Show ComponentDeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.ComponentDeploymentUpdateType

NFData ComponentDeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.ComponentDeploymentUpdateType

Eq ComponentDeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.ComponentDeploymentUpdateType

Ord ComponentDeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.ComponentDeploymentUpdateType

Hashable ComponentDeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.ComponentDeploymentUpdateType

type Rep ComponentDeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.ComponentDeploymentUpdateType

type Rep ComponentDeploymentUpdateType = D1 ('MetaData "ComponentDeploymentUpdateType" "Amazonka.Proton.Types.ComponentDeploymentUpdateType" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'True) (C1 ('MetaCons "ComponentDeploymentUpdateType'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromComponentDeploymentUpdateType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

DeploymentStatus

newtype DeploymentStatus Source #

Instances

Instances details
FromJSON DeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentStatus

FromJSONKey DeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentStatus

ToJSON DeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentStatus

ToJSONKey DeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentStatus

ToByteString DeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentStatus

ToHeader DeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentStatus

ToLog DeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentStatus

ToQuery DeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentStatus

FromText DeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentStatus

ToText DeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentStatus

FromXML DeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentStatus

ToXML DeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentStatus

Generic DeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentStatus

Associated Types

type Rep DeploymentStatus :: Type -> Type #

Read DeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentStatus

Show DeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentStatus

NFData DeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentStatus

Methods

rnf :: DeploymentStatus -> () #

Eq DeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentStatus

Ord DeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentStatus

Hashable DeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentStatus

type Rep DeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentStatus

type Rep DeploymentStatus = D1 ('MetaData "DeploymentStatus" "Amazonka.Proton.Types.DeploymentStatus" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'True) (C1 ('MetaCons "DeploymentStatus'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromDeploymentStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

DeploymentUpdateType

newtype DeploymentUpdateType Source #

Instances

Instances details
FromJSON DeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentUpdateType

FromJSONKey DeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentUpdateType

ToJSON DeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentUpdateType

ToJSONKey DeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentUpdateType

ToByteString DeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentUpdateType

ToHeader DeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentUpdateType

ToLog DeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentUpdateType

ToQuery DeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentUpdateType

FromText DeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentUpdateType

ToText DeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentUpdateType

FromXML DeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentUpdateType

ToXML DeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentUpdateType

Generic DeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentUpdateType

Associated Types

type Rep DeploymentUpdateType :: Type -> Type #

Read DeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentUpdateType

Show DeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentUpdateType

NFData DeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentUpdateType

Methods

rnf :: DeploymentUpdateType -> () #

Eq DeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentUpdateType

Ord DeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentUpdateType

Hashable DeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentUpdateType

type Rep DeploymentUpdateType Source # 
Instance details

Defined in Amazonka.Proton.Types.DeploymentUpdateType

type Rep DeploymentUpdateType = D1 ('MetaData "DeploymentUpdateType" "Amazonka.Proton.Types.DeploymentUpdateType" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'True) (C1 ('MetaCons "DeploymentUpdateType'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromDeploymentUpdateType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

EnvironmentAccountConnectionRequesterAccountType

newtype EnvironmentAccountConnectionRequesterAccountType Source #

Instances

Instances details
FromJSON EnvironmentAccountConnectionRequesterAccountType Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionRequesterAccountType

FromJSONKey EnvironmentAccountConnectionRequesterAccountType Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionRequesterAccountType

ToJSON EnvironmentAccountConnectionRequesterAccountType Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionRequesterAccountType

ToJSONKey EnvironmentAccountConnectionRequesterAccountType Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionRequesterAccountType

ToByteString EnvironmentAccountConnectionRequesterAccountType Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionRequesterAccountType

ToHeader EnvironmentAccountConnectionRequesterAccountType Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionRequesterAccountType

ToLog EnvironmentAccountConnectionRequesterAccountType Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionRequesterAccountType

ToQuery EnvironmentAccountConnectionRequesterAccountType Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionRequesterAccountType

FromText EnvironmentAccountConnectionRequesterAccountType Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionRequesterAccountType

ToText EnvironmentAccountConnectionRequesterAccountType Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionRequesterAccountType

FromXML EnvironmentAccountConnectionRequesterAccountType Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionRequesterAccountType

ToXML EnvironmentAccountConnectionRequesterAccountType Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionRequesterAccountType

Generic EnvironmentAccountConnectionRequesterAccountType Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionRequesterAccountType

Read EnvironmentAccountConnectionRequesterAccountType Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionRequesterAccountType

Show EnvironmentAccountConnectionRequesterAccountType Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionRequesterAccountType

NFData EnvironmentAccountConnectionRequesterAccountType Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionRequesterAccountType

Eq EnvironmentAccountConnectionRequesterAccountType Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionRequesterAccountType

Ord EnvironmentAccountConnectionRequesterAccountType Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionRequesterAccountType

Hashable EnvironmentAccountConnectionRequesterAccountType Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionRequesterAccountType

type Rep EnvironmentAccountConnectionRequesterAccountType Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionRequesterAccountType

type Rep EnvironmentAccountConnectionRequesterAccountType = D1 ('MetaData "EnvironmentAccountConnectionRequesterAccountType" "Amazonka.Proton.Types.EnvironmentAccountConnectionRequesterAccountType" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'True) (C1 ('MetaCons "EnvironmentAccountConnectionRequesterAccountType'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromEnvironmentAccountConnectionRequesterAccountType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

EnvironmentAccountConnectionStatus

newtype EnvironmentAccountConnectionStatus Source #

Instances

Instances details
FromJSON EnvironmentAccountConnectionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionStatus

FromJSONKey EnvironmentAccountConnectionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionStatus

ToJSON EnvironmentAccountConnectionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionStatus

ToJSONKey EnvironmentAccountConnectionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionStatus

ToByteString EnvironmentAccountConnectionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionStatus

ToHeader EnvironmentAccountConnectionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionStatus

ToLog EnvironmentAccountConnectionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionStatus

ToQuery EnvironmentAccountConnectionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionStatus

FromText EnvironmentAccountConnectionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionStatus

ToText EnvironmentAccountConnectionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionStatus

FromXML EnvironmentAccountConnectionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionStatus

ToXML EnvironmentAccountConnectionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionStatus

Generic EnvironmentAccountConnectionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionStatus

Associated Types

type Rep EnvironmentAccountConnectionStatus :: Type -> Type #

Read EnvironmentAccountConnectionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionStatus

Show EnvironmentAccountConnectionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionStatus

NFData EnvironmentAccountConnectionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionStatus

Eq EnvironmentAccountConnectionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionStatus

Ord EnvironmentAccountConnectionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionStatus

Hashable EnvironmentAccountConnectionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionStatus

type Rep EnvironmentAccountConnectionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionStatus

type Rep EnvironmentAccountConnectionStatus = D1 ('MetaData "EnvironmentAccountConnectionStatus" "Amazonka.Proton.Types.EnvironmentAccountConnectionStatus" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'True) (C1 ('MetaCons "EnvironmentAccountConnectionStatus'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromEnvironmentAccountConnectionStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

ListServiceInstancesFilterBy

newtype ListServiceInstancesFilterBy Source #

Instances

Instances details
FromJSON ListServiceInstancesFilterBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesFilterBy

FromJSONKey ListServiceInstancesFilterBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesFilterBy

ToJSON ListServiceInstancesFilterBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesFilterBy

ToJSONKey ListServiceInstancesFilterBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesFilterBy

ToByteString ListServiceInstancesFilterBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesFilterBy

ToHeader ListServiceInstancesFilterBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesFilterBy

ToLog ListServiceInstancesFilterBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesFilterBy

ToQuery ListServiceInstancesFilterBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesFilterBy

FromText ListServiceInstancesFilterBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesFilterBy

ToText ListServiceInstancesFilterBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesFilterBy

FromXML ListServiceInstancesFilterBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesFilterBy

ToXML ListServiceInstancesFilterBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesFilterBy

Generic ListServiceInstancesFilterBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesFilterBy

Associated Types

type Rep ListServiceInstancesFilterBy :: Type -> Type #

Read ListServiceInstancesFilterBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesFilterBy

Show ListServiceInstancesFilterBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesFilterBy

NFData ListServiceInstancesFilterBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesFilterBy

Eq ListServiceInstancesFilterBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesFilterBy

Ord ListServiceInstancesFilterBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesFilterBy

Hashable ListServiceInstancesFilterBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesFilterBy

type Rep ListServiceInstancesFilterBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesFilterBy

type Rep ListServiceInstancesFilterBy = D1 ('MetaData "ListServiceInstancesFilterBy" "Amazonka.Proton.Types.ListServiceInstancesFilterBy" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'True) (C1 ('MetaCons "ListServiceInstancesFilterBy'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromListServiceInstancesFilterBy") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

ListServiceInstancesSortBy

newtype ListServiceInstancesSortBy Source #

Instances

Instances details
FromJSON ListServiceInstancesSortBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesSortBy

FromJSONKey ListServiceInstancesSortBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesSortBy

ToJSON ListServiceInstancesSortBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesSortBy

ToJSONKey ListServiceInstancesSortBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesSortBy

ToByteString ListServiceInstancesSortBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesSortBy

ToHeader ListServiceInstancesSortBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesSortBy

ToLog ListServiceInstancesSortBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesSortBy

ToQuery ListServiceInstancesSortBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesSortBy

FromText ListServiceInstancesSortBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesSortBy

ToText ListServiceInstancesSortBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesSortBy

FromXML ListServiceInstancesSortBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesSortBy

ToXML ListServiceInstancesSortBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesSortBy

Generic ListServiceInstancesSortBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesSortBy

Associated Types

type Rep ListServiceInstancesSortBy :: Type -> Type #

Read ListServiceInstancesSortBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesSortBy

Show ListServiceInstancesSortBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesSortBy

NFData ListServiceInstancesSortBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesSortBy

Eq ListServiceInstancesSortBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesSortBy

Ord ListServiceInstancesSortBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesSortBy

Hashable ListServiceInstancesSortBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesSortBy

type Rep ListServiceInstancesSortBy Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesSortBy

type Rep ListServiceInstancesSortBy = D1 ('MetaData "ListServiceInstancesSortBy" "Amazonka.Proton.Types.ListServiceInstancesSortBy" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'True) (C1 ('MetaCons "ListServiceInstancesSortBy'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromListServiceInstancesSortBy") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

ProvisionedResourceEngine

newtype ProvisionedResourceEngine Source #

List of provisioning engines

Instances

Instances details
FromJSON ProvisionedResourceEngine Source # 
Instance details

Defined in Amazonka.Proton.Types.ProvisionedResourceEngine

FromJSONKey ProvisionedResourceEngine Source # 
Instance details

Defined in Amazonka.Proton.Types.ProvisionedResourceEngine

ToJSON ProvisionedResourceEngine Source # 
Instance details

Defined in Amazonka.Proton.Types.ProvisionedResourceEngine

ToJSONKey ProvisionedResourceEngine Source # 
Instance details

Defined in Amazonka.Proton.Types.ProvisionedResourceEngine

ToByteString ProvisionedResourceEngine Source # 
Instance details

Defined in Amazonka.Proton.Types.ProvisionedResourceEngine

ToHeader ProvisionedResourceEngine Source # 
Instance details

Defined in Amazonka.Proton.Types.ProvisionedResourceEngine

ToLog ProvisionedResourceEngine Source # 
Instance details

Defined in Amazonka.Proton.Types.ProvisionedResourceEngine

ToQuery ProvisionedResourceEngine Source # 
Instance details

Defined in Amazonka.Proton.Types.ProvisionedResourceEngine

FromText ProvisionedResourceEngine Source # 
Instance details

Defined in Amazonka.Proton.Types.ProvisionedResourceEngine

ToText ProvisionedResourceEngine Source # 
Instance details

Defined in Amazonka.Proton.Types.ProvisionedResourceEngine

FromXML ProvisionedResourceEngine Source # 
Instance details

Defined in Amazonka.Proton.Types.ProvisionedResourceEngine

ToXML ProvisionedResourceEngine Source # 
Instance details

Defined in Amazonka.Proton.Types.ProvisionedResourceEngine

Generic ProvisionedResourceEngine Source # 
Instance details

Defined in Amazonka.Proton.Types.ProvisionedResourceEngine

Associated Types

type Rep ProvisionedResourceEngine :: Type -> Type #

Read ProvisionedResourceEngine Source # 
Instance details

Defined in Amazonka.Proton.Types.ProvisionedResourceEngine

Show ProvisionedResourceEngine Source # 
Instance details

Defined in Amazonka.Proton.Types.ProvisionedResourceEngine

NFData ProvisionedResourceEngine Source # 
Instance details

Defined in Amazonka.Proton.Types.ProvisionedResourceEngine

Eq ProvisionedResourceEngine Source # 
Instance details

Defined in Amazonka.Proton.Types.ProvisionedResourceEngine

Ord ProvisionedResourceEngine Source # 
Instance details

Defined in Amazonka.Proton.Types.ProvisionedResourceEngine

Hashable ProvisionedResourceEngine Source # 
Instance details

Defined in Amazonka.Proton.Types.ProvisionedResourceEngine

type Rep ProvisionedResourceEngine Source # 
Instance details

Defined in Amazonka.Proton.Types.ProvisionedResourceEngine

type Rep ProvisionedResourceEngine = D1 ('MetaData "ProvisionedResourceEngine" "Amazonka.Proton.Types.ProvisionedResourceEngine" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'True) (C1 ('MetaCons "ProvisionedResourceEngine'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromProvisionedResourceEngine") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

Provisioning

newtype Provisioning Source #

Constructors

Provisioning' 

Bundled Patterns

pattern Provisioning_CUSTOMER_MANAGED :: Provisioning 

Instances

Instances details
FromJSON Provisioning Source # 
Instance details

Defined in Amazonka.Proton.Types.Provisioning

FromJSONKey Provisioning Source # 
Instance details

Defined in Amazonka.Proton.Types.Provisioning

ToJSON Provisioning Source # 
Instance details

Defined in Amazonka.Proton.Types.Provisioning

ToJSONKey Provisioning Source # 
Instance details

Defined in Amazonka.Proton.Types.Provisioning

ToByteString Provisioning Source # 
Instance details

Defined in Amazonka.Proton.Types.Provisioning

ToHeader Provisioning Source # 
Instance details

Defined in Amazonka.Proton.Types.Provisioning

ToLog Provisioning Source # 
Instance details

Defined in Amazonka.Proton.Types.Provisioning

ToQuery Provisioning Source # 
Instance details

Defined in Amazonka.Proton.Types.Provisioning

FromText Provisioning Source # 
Instance details

Defined in Amazonka.Proton.Types.Provisioning

ToText Provisioning Source # 
Instance details

Defined in Amazonka.Proton.Types.Provisioning

Methods

toText :: Provisioning -> Text #

FromXML Provisioning Source # 
Instance details

Defined in Amazonka.Proton.Types.Provisioning

ToXML Provisioning Source # 
Instance details

Defined in Amazonka.Proton.Types.Provisioning

Methods

toXML :: Provisioning -> XML #

Generic Provisioning Source # 
Instance details

Defined in Amazonka.Proton.Types.Provisioning

Associated Types

type Rep Provisioning :: Type -> Type #

Read Provisioning Source # 
Instance details

Defined in Amazonka.Proton.Types.Provisioning

Show Provisioning Source # 
Instance details

Defined in Amazonka.Proton.Types.Provisioning

NFData Provisioning Source # 
Instance details

Defined in Amazonka.Proton.Types.Provisioning

Methods

rnf :: Provisioning -> () #

Eq Provisioning Source # 
Instance details

Defined in Amazonka.Proton.Types.Provisioning

Ord Provisioning Source # 
Instance details

Defined in Amazonka.Proton.Types.Provisioning

Hashable Provisioning Source # 
Instance details

Defined in Amazonka.Proton.Types.Provisioning

type Rep Provisioning Source # 
Instance details

Defined in Amazonka.Proton.Types.Provisioning

type Rep Provisioning = D1 ('MetaData "Provisioning" "Amazonka.Proton.Types.Provisioning" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'True) (C1 ('MetaCons "Provisioning'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromProvisioning") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

RepositoryProvider

newtype RepositoryProvider Source #

Instances

Instances details
FromJSON RepositoryProvider Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositoryProvider

FromJSONKey RepositoryProvider Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositoryProvider

ToJSON RepositoryProvider Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositoryProvider

ToJSONKey RepositoryProvider Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositoryProvider

ToByteString RepositoryProvider Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositoryProvider

ToHeader RepositoryProvider Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositoryProvider

ToLog RepositoryProvider Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositoryProvider

ToQuery RepositoryProvider Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositoryProvider

FromText RepositoryProvider Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositoryProvider

ToText RepositoryProvider Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositoryProvider

FromXML RepositoryProvider Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositoryProvider

ToXML RepositoryProvider Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositoryProvider

Generic RepositoryProvider Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositoryProvider

Associated Types

type Rep RepositoryProvider :: Type -> Type #

Read RepositoryProvider Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositoryProvider

Show RepositoryProvider Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositoryProvider

NFData RepositoryProvider Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositoryProvider

Methods

rnf :: RepositoryProvider -> () #

Eq RepositoryProvider Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositoryProvider

Ord RepositoryProvider Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositoryProvider

Hashable RepositoryProvider Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositoryProvider

type Rep RepositoryProvider Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositoryProvider

type Rep RepositoryProvider = D1 ('MetaData "RepositoryProvider" "Amazonka.Proton.Types.RepositoryProvider" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'True) (C1 ('MetaCons "RepositoryProvider'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromRepositoryProvider") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

RepositorySyncStatus

newtype RepositorySyncStatus Source #

Instances

Instances details
FromJSON RepositorySyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncStatus

FromJSONKey RepositorySyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncStatus

ToJSON RepositorySyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncStatus

ToJSONKey RepositorySyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncStatus

ToByteString RepositorySyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncStatus

ToHeader RepositorySyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncStatus

ToLog RepositorySyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncStatus

ToQuery RepositorySyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncStatus

FromText RepositorySyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncStatus

ToText RepositorySyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncStatus

FromXML RepositorySyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncStatus

ToXML RepositorySyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncStatus

Generic RepositorySyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncStatus

Associated Types

type Rep RepositorySyncStatus :: Type -> Type #

Read RepositorySyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncStatus

Show RepositorySyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncStatus

NFData RepositorySyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncStatus

Methods

rnf :: RepositorySyncStatus -> () #

Eq RepositorySyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncStatus

Ord RepositorySyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncStatus

Hashable RepositorySyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncStatus

type Rep RepositorySyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncStatus

type Rep RepositorySyncStatus = D1 ('MetaData "RepositorySyncStatus" "Amazonka.Proton.Types.RepositorySyncStatus" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'True) (C1 ('MetaCons "RepositorySyncStatus'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromRepositorySyncStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

ResourceDeploymentStatus

newtype ResourceDeploymentStatus Source #

The state that a PR-based deployment can be updated to.

Instances

Instances details
FromJSON ResourceDeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceDeploymentStatus

FromJSONKey ResourceDeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceDeploymentStatus

ToJSON ResourceDeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceDeploymentStatus

ToJSONKey ResourceDeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceDeploymentStatus

ToByteString ResourceDeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceDeploymentStatus

ToHeader ResourceDeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceDeploymentStatus

ToLog ResourceDeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceDeploymentStatus

ToQuery ResourceDeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceDeploymentStatus

FromText ResourceDeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceDeploymentStatus

ToText ResourceDeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceDeploymentStatus

FromXML ResourceDeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceDeploymentStatus

ToXML ResourceDeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceDeploymentStatus

Generic ResourceDeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceDeploymentStatus

Associated Types

type Rep ResourceDeploymentStatus :: Type -> Type #

Read ResourceDeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceDeploymentStatus

Show ResourceDeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceDeploymentStatus

NFData ResourceDeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceDeploymentStatus

Eq ResourceDeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceDeploymentStatus

Ord ResourceDeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceDeploymentStatus

Hashable ResourceDeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceDeploymentStatus

type Rep ResourceDeploymentStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceDeploymentStatus

type Rep ResourceDeploymentStatus = D1 ('MetaData "ResourceDeploymentStatus" "Amazonka.Proton.Types.ResourceDeploymentStatus" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'True) (C1 ('MetaCons "ResourceDeploymentStatus'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromResourceDeploymentStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

ResourceSyncStatus

newtype ResourceSyncStatus Source #

Instances

Instances details
FromJSON ResourceSyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceSyncStatus

FromJSONKey ResourceSyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceSyncStatus

ToJSON ResourceSyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceSyncStatus

ToJSONKey ResourceSyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceSyncStatus

ToByteString ResourceSyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceSyncStatus

ToHeader ResourceSyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceSyncStatus

ToLog ResourceSyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceSyncStatus

ToQuery ResourceSyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceSyncStatus

FromText ResourceSyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceSyncStatus

ToText ResourceSyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceSyncStatus

FromXML ResourceSyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceSyncStatus

ToXML ResourceSyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceSyncStatus

Generic ResourceSyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceSyncStatus

Associated Types

type Rep ResourceSyncStatus :: Type -> Type #

Read ResourceSyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceSyncStatus

Show ResourceSyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceSyncStatus

NFData ResourceSyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceSyncStatus

Methods

rnf :: ResourceSyncStatus -> () #

Eq ResourceSyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceSyncStatus

Ord ResourceSyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceSyncStatus

Hashable ResourceSyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceSyncStatus

type Rep ResourceSyncStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceSyncStatus

type Rep ResourceSyncStatus = D1 ('MetaData "ResourceSyncStatus" "Amazonka.Proton.Types.ResourceSyncStatus" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'True) (C1 ('MetaCons "ResourceSyncStatus'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromResourceSyncStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

ServiceStatus

newtype ServiceStatus Source #

Constructors

ServiceStatus' 

Instances

Instances details
FromJSON ServiceStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceStatus

FromJSONKey ServiceStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceStatus

ToJSON ServiceStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceStatus

ToJSONKey ServiceStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceStatus

ToByteString ServiceStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceStatus

ToHeader ServiceStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceStatus

ToLog ServiceStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceStatus

ToQuery ServiceStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceStatus

FromText ServiceStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceStatus

ToText ServiceStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceStatus

Methods

toText :: ServiceStatus -> Text #

FromXML ServiceStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceStatus

ToXML ServiceStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceStatus

Methods

toXML :: ServiceStatus -> XML #

Generic ServiceStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceStatus

Associated Types

type Rep ServiceStatus :: Type -> Type #

Read ServiceStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceStatus

Show ServiceStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceStatus

NFData ServiceStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceStatus

Methods

rnf :: ServiceStatus -> () #

Eq ServiceStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceStatus

Ord ServiceStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceStatus

Hashable ServiceStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceStatus

type Rep ServiceStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceStatus

type Rep ServiceStatus = D1 ('MetaData "ServiceStatus" "Amazonka.Proton.Types.ServiceStatus" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'True) (C1 ('MetaCons "ServiceStatus'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromServiceStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

ServiceTemplateSupportedComponentSourceType

newtype ServiceTemplateSupportedComponentSourceType Source #

Instances

Instances details
FromJSON ServiceTemplateSupportedComponentSourceType Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateSupportedComponentSourceType

FromJSONKey ServiceTemplateSupportedComponentSourceType Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateSupportedComponentSourceType

ToJSON ServiceTemplateSupportedComponentSourceType Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateSupportedComponentSourceType

ToJSONKey ServiceTemplateSupportedComponentSourceType Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateSupportedComponentSourceType

ToByteString ServiceTemplateSupportedComponentSourceType Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateSupportedComponentSourceType

ToHeader ServiceTemplateSupportedComponentSourceType Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateSupportedComponentSourceType

ToLog ServiceTemplateSupportedComponentSourceType Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateSupportedComponentSourceType

ToQuery ServiceTemplateSupportedComponentSourceType Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateSupportedComponentSourceType

FromText ServiceTemplateSupportedComponentSourceType Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateSupportedComponentSourceType

ToText ServiceTemplateSupportedComponentSourceType Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateSupportedComponentSourceType

FromXML ServiceTemplateSupportedComponentSourceType Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateSupportedComponentSourceType

ToXML ServiceTemplateSupportedComponentSourceType Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateSupportedComponentSourceType

Generic ServiceTemplateSupportedComponentSourceType Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateSupportedComponentSourceType

Read ServiceTemplateSupportedComponentSourceType Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateSupportedComponentSourceType

Show ServiceTemplateSupportedComponentSourceType Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateSupportedComponentSourceType

NFData ServiceTemplateSupportedComponentSourceType Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateSupportedComponentSourceType

Eq ServiceTemplateSupportedComponentSourceType Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateSupportedComponentSourceType

Ord ServiceTemplateSupportedComponentSourceType Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateSupportedComponentSourceType

Hashable ServiceTemplateSupportedComponentSourceType Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateSupportedComponentSourceType

type Rep ServiceTemplateSupportedComponentSourceType Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateSupportedComponentSourceType

type Rep ServiceTemplateSupportedComponentSourceType = D1 ('MetaData "ServiceTemplateSupportedComponentSourceType" "Amazonka.Proton.Types.ServiceTemplateSupportedComponentSourceType" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'True) (C1 ('MetaCons "ServiceTemplateSupportedComponentSourceType'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromServiceTemplateSupportedComponentSourceType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

SortOrder

newtype SortOrder Source #

Constructors

SortOrder' 

Fields

Bundled Patterns

pattern SortOrder_ASCENDING :: SortOrder 
pattern SortOrder_DESCENDING :: SortOrder 

Instances

Instances details
FromJSON SortOrder Source # 
Instance details

Defined in Amazonka.Proton.Types.SortOrder

FromJSONKey SortOrder Source # 
Instance details

Defined in Amazonka.Proton.Types.SortOrder

ToJSON SortOrder Source # 
Instance details

Defined in Amazonka.Proton.Types.SortOrder

ToJSONKey SortOrder Source # 
Instance details

Defined in Amazonka.Proton.Types.SortOrder

ToByteString SortOrder Source # 
Instance details

Defined in Amazonka.Proton.Types.SortOrder

Methods

toBS :: SortOrder -> ByteString #

ToHeader SortOrder Source # 
Instance details

Defined in Amazonka.Proton.Types.SortOrder

ToLog SortOrder Source # 
Instance details

Defined in Amazonka.Proton.Types.SortOrder

ToQuery SortOrder Source # 
Instance details

Defined in Amazonka.Proton.Types.SortOrder

FromText SortOrder Source # 
Instance details

Defined in Amazonka.Proton.Types.SortOrder

ToText SortOrder Source # 
Instance details

Defined in Amazonka.Proton.Types.SortOrder

Methods

toText :: SortOrder -> Text #

FromXML SortOrder Source # 
Instance details

Defined in Amazonka.Proton.Types.SortOrder

ToXML SortOrder Source # 
Instance details

Defined in Amazonka.Proton.Types.SortOrder

Methods

toXML :: SortOrder -> XML #

Generic SortOrder Source # 
Instance details

Defined in Amazonka.Proton.Types.SortOrder

Associated Types

type Rep SortOrder :: Type -> Type #

Read SortOrder Source # 
Instance details

Defined in Amazonka.Proton.Types.SortOrder

Show SortOrder Source # 
Instance details

Defined in Amazonka.Proton.Types.SortOrder

NFData SortOrder Source # 
Instance details

Defined in Amazonka.Proton.Types.SortOrder

Methods

rnf :: SortOrder -> () #

Eq SortOrder Source # 
Instance details

Defined in Amazonka.Proton.Types.SortOrder

Ord SortOrder Source # 
Instance details

Defined in Amazonka.Proton.Types.SortOrder

Hashable SortOrder Source # 
Instance details

Defined in Amazonka.Proton.Types.SortOrder

type Rep SortOrder Source # 
Instance details

Defined in Amazonka.Proton.Types.SortOrder

type Rep SortOrder = D1 ('MetaData "SortOrder" "Amazonka.Proton.Types.SortOrder" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'True) (C1 ('MetaCons "SortOrder'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromSortOrder") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

SyncType

newtype SyncType Source #

Constructors

SyncType' 

Fields

Bundled Patterns

pattern SyncType_TEMPLATE_SYNC :: SyncType 

Instances

Instances details
FromJSON SyncType Source # 
Instance details

Defined in Amazonka.Proton.Types.SyncType

FromJSONKey SyncType Source # 
Instance details

Defined in Amazonka.Proton.Types.SyncType

ToJSON SyncType Source # 
Instance details

Defined in Amazonka.Proton.Types.SyncType

ToJSONKey SyncType Source # 
Instance details

Defined in Amazonka.Proton.Types.SyncType

ToByteString SyncType Source # 
Instance details

Defined in Amazonka.Proton.Types.SyncType

Methods

toBS :: SyncType -> ByteString #

ToHeader SyncType Source # 
Instance details

Defined in Amazonka.Proton.Types.SyncType

Methods

toHeader :: HeaderName -> SyncType -> [Header] #

ToLog SyncType Source # 
Instance details

Defined in Amazonka.Proton.Types.SyncType

ToQuery SyncType Source # 
Instance details

Defined in Amazonka.Proton.Types.SyncType

FromText SyncType Source # 
Instance details

Defined in Amazonka.Proton.Types.SyncType

ToText SyncType Source # 
Instance details

Defined in Amazonka.Proton.Types.SyncType

Methods

toText :: SyncType -> Text #

FromXML SyncType Source # 
Instance details

Defined in Amazonka.Proton.Types.SyncType

ToXML SyncType Source # 
Instance details

Defined in Amazonka.Proton.Types.SyncType

Methods

toXML :: SyncType -> XML #

Generic SyncType Source # 
Instance details

Defined in Amazonka.Proton.Types.SyncType

Associated Types

type Rep SyncType :: Type -> Type #

Methods

from :: SyncType -> Rep SyncType x #

to :: Rep SyncType x -> SyncType #

Read SyncType Source # 
Instance details

Defined in Amazonka.Proton.Types.SyncType

Show SyncType Source # 
Instance details

Defined in Amazonka.Proton.Types.SyncType

NFData SyncType Source # 
Instance details

Defined in Amazonka.Proton.Types.SyncType

Methods

rnf :: SyncType -> () #

Eq SyncType Source # 
Instance details

Defined in Amazonka.Proton.Types.SyncType

Ord SyncType Source # 
Instance details

Defined in Amazonka.Proton.Types.SyncType

Hashable SyncType Source # 
Instance details

Defined in Amazonka.Proton.Types.SyncType

Methods

hashWithSalt :: Int -> SyncType -> Int #

hash :: SyncType -> Int #

type Rep SyncType Source # 
Instance details

Defined in Amazonka.Proton.Types.SyncType

type Rep SyncType = D1 ('MetaData "SyncType" "Amazonka.Proton.Types.SyncType" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'True) (C1 ('MetaCons "SyncType'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromSyncType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

TemplateType

newtype TemplateType Source #

Constructors

TemplateType' 

Instances

Instances details
FromJSON TemplateType Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateType

FromJSONKey TemplateType Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateType

ToJSON TemplateType Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateType

ToJSONKey TemplateType Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateType

ToByteString TemplateType Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateType

ToHeader TemplateType Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateType

ToLog TemplateType Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateType

ToQuery TemplateType Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateType

FromText TemplateType Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateType

ToText TemplateType Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateType

Methods

toText :: TemplateType -> Text #

FromXML TemplateType Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateType

ToXML TemplateType Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateType

Methods

toXML :: TemplateType -> XML #

Generic TemplateType Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateType

Associated Types

type Rep TemplateType :: Type -> Type #

Read TemplateType Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateType

Show TemplateType Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateType

NFData TemplateType Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateType

Methods

rnf :: TemplateType -> () #

Eq TemplateType Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateType

Ord TemplateType Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateType

Hashable TemplateType Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateType

type Rep TemplateType Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateType

type Rep TemplateType = D1 ('MetaData "TemplateType" "Amazonka.Proton.Types.TemplateType" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'True) (C1 ('MetaCons "TemplateType'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromTemplateType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

TemplateVersionStatus

newtype TemplateVersionStatus Source #

Instances

Instances details
FromJSON TemplateVersionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateVersionStatus

FromJSONKey TemplateVersionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateVersionStatus

ToJSON TemplateVersionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateVersionStatus

ToJSONKey TemplateVersionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateVersionStatus

ToByteString TemplateVersionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateVersionStatus

ToHeader TemplateVersionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateVersionStatus

ToLog TemplateVersionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateVersionStatus

ToQuery TemplateVersionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateVersionStatus

FromText TemplateVersionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateVersionStatus

ToText TemplateVersionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateVersionStatus

FromXML TemplateVersionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateVersionStatus

ToXML TemplateVersionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateVersionStatus

Generic TemplateVersionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateVersionStatus

Associated Types

type Rep TemplateVersionStatus :: Type -> Type #

Read TemplateVersionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateVersionStatus

Show TemplateVersionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateVersionStatus

NFData TemplateVersionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateVersionStatus

Methods

rnf :: TemplateVersionStatus -> () #

Eq TemplateVersionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateVersionStatus

Ord TemplateVersionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateVersionStatus

Hashable TemplateVersionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateVersionStatus

type Rep TemplateVersionStatus Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateVersionStatus

type Rep TemplateVersionStatus = D1 ('MetaData "TemplateVersionStatus" "Amazonka.Proton.Types.TemplateVersionStatus" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'True) (C1 ('MetaCons "TemplateVersionStatus'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromTemplateVersionStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

AccountSettings

data AccountSettings Source #

Proton settings that are used for multiple services in the Amazon Web Services account.

See: newAccountSettings smart constructor.

Instances

Instances details
FromJSON AccountSettings Source # 
Instance details

Defined in Amazonka.Proton.Types.AccountSettings

Generic AccountSettings Source # 
Instance details

Defined in Amazonka.Proton.Types.AccountSettings

Associated Types

type Rep AccountSettings :: Type -> Type #

Read AccountSettings Source # 
Instance details

Defined in Amazonka.Proton.Types.AccountSettings

Show AccountSettings Source # 
Instance details

Defined in Amazonka.Proton.Types.AccountSettings

NFData AccountSettings Source # 
Instance details

Defined in Amazonka.Proton.Types.AccountSettings

Methods

rnf :: AccountSettings -> () #

Eq AccountSettings Source # 
Instance details

Defined in Amazonka.Proton.Types.AccountSettings

Hashable AccountSettings Source # 
Instance details

Defined in Amazonka.Proton.Types.AccountSettings

type Rep AccountSettings Source # 
Instance details

Defined in Amazonka.Proton.Types.AccountSettings

type Rep AccountSettings = D1 ('MetaData "AccountSettings" "Amazonka.Proton.Types.AccountSettings" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "AccountSettings'" 'PrefixI 'True) (S1 ('MetaSel ('Just "pipelineCodebuildRoleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "pipelineProvisioningRepository") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe RepositoryBranch)) :*: S1 ('MetaSel ('Just "pipelineServiceRoleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newAccountSettings :: AccountSettings Source #

Create a value of AccountSettings 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:pipelineCodebuildRoleArn:AccountSettings', accountSettings_pipelineCodebuildRoleArn - The Amazon Resource Name (ARN) of the service role that Proton uses for provisioning pipelines. Proton assumes this role for CodeBuild-based provisioning.

$sel:pipelineProvisioningRepository:AccountSettings', accountSettings_pipelineProvisioningRepository - The linked repository for pipeline provisioning. Required if you have environments configured for self-managed provisioning with services that include pipelines. A linked repository is a repository that has been registered with Proton. For more information, see CreateRepository.

$sel:pipelineServiceRoleArn:AccountSettings', accountSettings_pipelineServiceRoleArn - The Amazon Resource Name (ARN) of the service role you want to use for provisioning pipelines. Assumed by Proton for Amazon Web Services-managed provisioning, and by customer-owned automation for self-managed provisioning.

CompatibleEnvironmentTemplate

data CompatibleEnvironmentTemplate Source #

Compatible environment template data.

See: newCompatibleEnvironmentTemplate smart constructor.

Instances

Instances details
FromJSON CompatibleEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.Types.CompatibleEnvironmentTemplate

Generic CompatibleEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.Types.CompatibleEnvironmentTemplate

Associated Types

type Rep CompatibleEnvironmentTemplate :: Type -> Type #

Read CompatibleEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.Types.CompatibleEnvironmentTemplate

Show CompatibleEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.Types.CompatibleEnvironmentTemplate

NFData CompatibleEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.Types.CompatibleEnvironmentTemplate

Eq CompatibleEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.Types.CompatibleEnvironmentTemplate

Hashable CompatibleEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.Types.CompatibleEnvironmentTemplate

type Rep CompatibleEnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.Types.CompatibleEnvironmentTemplate

type Rep CompatibleEnvironmentTemplate = D1 ('MetaData "CompatibleEnvironmentTemplate" "Amazonka.Proton.Types.CompatibleEnvironmentTemplate" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "CompatibleEnvironmentTemplate'" 'PrefixI 'True) (S1 ('MetaSel ('Just "majorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "templateName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newCompatibleEnvironmentTemplate Source #

Create a value of CompatibleEnvironmentTemplate 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:majorVersion:CompatibleEnvironmentTemplate', compatibleEnvironmentTemplate_majorVersion - The major version of the compatible environment template.

$sel:templateName:CompatibleEnvironmentTemplate', compatibleEnvironmentTemplate_templateName - The compatible environment template name.

CompatibleEnvironmentTemplateInput

data CompatibleEnvironmentTemplateInput Source #

Compatible environment template data.

See: newCompatibleEnvironmentTemplateInput smart constructor.

Instances

Instances details
ToJSON CompatibleEnvironmentTemplateInput Source # 
Instance details

Defined in Amazonka.Proton.Types.CompatibleEnvironmentTemplateInput

Generic CompatibleEnvironmentTemplateInput Source # 
Instance details

Defined in Amazonka.Proton.Types.CompatibleEnvironmentTemplateInput

Associated Types

type Rep CompatibleEnvironmentTemplateInput :: Type -> Type #

Read CompatibleEnvironmentTemplateInput Source # 
Instance details

Defined in Amazonka.Proton.Types.CompatibleEnvironmentTemplateInput

Show CompatibleEnvironmentTemplateInput Source # 
Instance details

Defined in Amazonka.Proton.Types.CompatibleEnvironmentTemplateInput

NFData CompatibleEnvironmentTemplateInput Source # 
Instance details

Defined in Amazonka.Proton.Types.CompatibleEnvironmentTemplateInput

Eq CompatibleEnvironmentTemplateInput Source # 
Instance details

Defined in Amazonka.Proton.Types.CompatibleEnvironmentTemplateInput

Hashable CompatibleEnvironmentTemplateInput Source # 
Instance details

Defined in Amazonka.Proton.Types.CompatibleEnvironmentTemplateInput

type Rep CompatibleEnvironmentTemplateInput Source # 
Instance details

Defined in Amazonka.Proton.Types.CompatibleEnvironmentTemplateInput

type Rep CompatibleEnvironmentTemplateInput = D1 ('MetaData "CompatibleEnvironmentTemplateInput" "Amazonka.Proton.Types.CompatibleEnvironmentTemplateInput" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "CompatibleEnvironmentTemplateInput'" 'PrefixI 'True) (S1 ('MetaSel ('Just "majorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "templateName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newCompatibleEnvironmentTemplateInput Source #

Create a value of CompatibleEnvironmentTemplateInput 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:majorVersion:CompatibleEnvironmentTemplateInput', compatibleEnvironmentTemplateInput_majorVersion - The major version of the compatible environment template.

$sel:templateName:CompatibleEnvironmentTemplateInput', compatibleEnvironmentTemplateInput_templateName - The compatible environment template name.

Component

data Component Source #

Detailed data of an Proton component resource.

For more information about components, see Proton components in the Proton User Guide.

See: newComponent smart constructor.

Instances

Instances details
FromJSON Component Source # 
Instance details

Defined in Amazonka.Proton.Types.Component

Generic Component Source # 
Instance details

Defined in Amazonka.Proton.Types.Component

Associated Types

type Rep Component :: Type -> Type #

Show Component Source # 
Instance details

Defined in Amazonka.Proton.Types.Component

NFData Component Source # 
Instance details

Defined in Amazonka.Proton.Types.Component

Methods

rnf :: Component -> () #

Eq Component Source # 
Instance details

Defined in Amazonka.Proton.Types.Component

Hashable Component Source # 
Instance details

Defined in Amazonka.Proton.Types.Component

type Rep Component Source # 
Instance details

Defined in Amazonka.Proton.Types.Component

type Rep Component = D1 ('MetaData "Component" "Amazonka.Proton.Types.Component" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "Component'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "deploymentStatusMessage") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: (S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: S1 ('MetaSel ('Just "lastDeploymentAttemptedAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)))) :*: (S1 ('MetaSel ('Just "lastDeploymentSucceededAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: (S1 ('MetaSel ('Just "serviceInstanceName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "serviceName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))) :*: ((S1 ('MetaSel ('Just "serviceSpec") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: (S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "createdAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX))) :*: ((S1 ('MetaSel ('Just "deploymentStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 DeploymentStatus) :*: S1 ('MetaSel ('Just "environmentName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "lastModifiedAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))))

newComponent Source #

Create a value of Component 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:deploymentStatusMessage:Component', component_deploymentStatusMessage - The message associated with the component deployment status.

$sel:description:Component', component_description - A description of the component.

$sel:lastDeploymentAttemptedAt:Component', component_lastDeploymentAttemptedAt - The time when a deployment of the component was last attempted.

$sel:lastDeploymentSucceededAt:Component', component_lastDeploymentSucceededAt - The time when the component was last deployed successfully.

$sel:serviceInstanceName:Component', component_serviceInstanceName - The name of the service instance that this component is attached to. Provided when a component is attached to a service instance.

$sel:serviceName:Component', component_serviceName - The name of the service that serviceInstanceName is associated with. Provided when a component is attached to a service instance.

$sel:serviceSpec:Component', component_serviceSpec - The service spec that the component uses to access service inputs. Provided when a component is attached to a service instance.

$sel:arn:Component', component_arn - The Amazon Resource Name (ARN) of the component.

$sel:createdAt:Component', component_createdAt - The time when the component was created.

$sel:deploymentStatus:Component', component_deploymentStatus - The component deployment status.

$sel:environmentName:Component', component_environmentName - The name of the Proton environment that this component is associated with.

$sel:lastModifiedAt:Component', component_lastModifiedAt - The time when the component was last modified.

$sel:name:Component', component_name - The name of the component.

ComponentSummary

data ComponentSummary Source #

Summary data of an Proton component resource.

For more information about components, see Proton components in the Proton User Guide.

See: newComponentSummary smart constructor.

Instances

Instances details
FromJSON ComponentSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.ComponentSummary

Generic ComponentSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.ComponentSummary

Associated Types

type Rep ComponentSummary :: Type -> Type #

Show ComponentSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.ComponentSummary

NFData ComponentSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.ComponentSummary

Methods

rnf :: ComponentSummary -> () #

Eq ComponentSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.ComponentSummary

Hashable ComponentSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.ComponentSummary

type Rep ComponentSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.ComponentSummary

type Rep ComponentSummary = D1 ('MetaData "ComponentSummary" "Amazonka.Proton.Types.ComponentSummary" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ComponentSummary'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "deploymentStatusMessage") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: S1 ('MetaSel ('Just "lastDeploymentAttemptedAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX))) :*: (S1 ('MetaSel ('Just "lastDeploymentSucceededAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: (S1 ('MetaSel ('Just "serviceInstanceName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "serviceName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))) :*: ((S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "createdAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX) :*: S1 ('MetaSel ('Just "deploymentStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 DeploymentStatus))) :*: (S1 ('MetaSel ('Just "environmentName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "lastModifiedAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))))

newComponentSummary Source #

Create a value of ComponentSummary 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:deploymentStatusMessage:ComponentSummary', componentSummary_deploymentStatusMessage - The message associated with the component deployment status.

$sel:lastDeploymentAttemptedAt:ComponentSummary', componentSummary_lastDeploymentAttemptedAt - The time when a deployment of the component was last attempted.

$sel:lastDeploymentSucceededAt:ComponentSummary', componentSummary_lastDeploymentSucceededAt - The time when the component was last deployed successfully.

$sel:serviceInstanceName:ComponentSummary', componentSummary_serviceInstanceName - The name of the service instance that this component is attached to. Provided when a component is attached to a service instance.

$sel:serviceName:ComponentSummary', componentSummary_serviceName - The name of the service that serviceInstanceName is associated with. Provided when a component is attached to a service instance.

$sel:arn:ComponentSummary', componentSummary_arn - The Amazon Resource Name (ARN) of the component.

$sel:createdAt:ComponentSummary', componentSummary_createdAt - The time when the component was created.

$sel:deploymentStatus:ComponentSummary', componentSummary_deploymentStatus - The component deployment status.

$sel:environmentName:ComponentSummary', componentSummary_environmentName - The name of the Proton environment that this component is associated with.

$sel:lastModifiedAt:ComponentSummary', componentSummary_lastModifiedAt - The time when the component was last modified.

$sel:name:ComponentSummary', componentSummary_name - The name of the component.

Environment

data Environment Source #

Detailed data of an Proton environment resource. An Proton environment is a set of resources shared across Proton services.

See: newEnvironment smart constructor.

Instances

Instances details
FromJSON Environment Source # 
Instance details

Defined in Amazonka.Proton.Types.Environment

Generic Environment Source # 
Instance details

Defined in Amazonka.Proton.Types.Environment

Associated Types

type Rep Environment :: Type -> Type #

Show Environment Source # 
Instance details

Defined in Amazonka.Proton.Types.Environment

NFData Environment Source # 
Instance details

Defined in Amazonka.Proton.Types.Environment

Methods

rnf :: Environment -> () #

Eq Environment Source # 
Instance details

Defined in Amazonka.Proton.Types.Environment

Hashable Environment Source # 
Instance details

Defined in Amazonka.Proton.Types.Environment

type Rep Environment Source # 
Instance details

Defined in Amazonka.Proton.Types.Environment

type Rep Environment = D1 ('MetaData "Environment" "Amazonka.Proton.Types.Environment" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "Environment'" 'PrefixI 'True) ((((S1 ('MetaSel ('Just "codebuildRoleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "componentRoleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "deploymentStatusMessage") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))))) :*: ((S1 ('MetaSel ('Just "environmentAccountConnectionId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "environmentAccountId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "protonServiceRoleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "provisioning") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Provisioning)) :*: S1 ('MetaSel ('Just "provisioningRepository") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe RepositoryBranch)))))) :*: (((S1 ('MetaSel ('Just "spec") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "createdAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX) :*: (S1 ('MetaSel ('Just "deploymentStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 DeploymentStatus) :*: S1 ('MetaSel ('Just "lastDeploymentAttemptedAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX)))) :*: ((S1 ('MetaSel ('Just "lastDeploymentSucceededAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "templateMajorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "templateMinorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "templateName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))))))

newEnvironment Source #

Create a value of Environment 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:codebuildRoleArn:Environment', environment_codebuildRoleArn - The Amazon Resource Name (ARN) of the IAM service role that allows Proton to provision infrastructure using CodeBuild-based provisioning on your behalf.

$sel:componentRoleArn:Environment', environment_componentRoleArn - The Amazon Resource Name (ARN) of the IAM service role that Proton uses when provisioning directly defined components in this environment. It determines the scope of infrastructure that a component can provision.

The environment must have a componentRoleArn to allow directly defined components to be associated with the environment.

For more information about components, see Proton components in the Proton User Guide.

$sel:deploymentStatusMessage:Environment', environment_deploymentStatusMessage - An environment deployment status message.

$sel:description:Environment', environment_description - The description of the environment.

$sel:environmentAccountConnectionId:Environment', environment_environmentAccountConnectionId - The ID of the environment account connection that's used to provision infrastructure resources in an environment account.

$sel:environmentAccountId:Environment', environment_environmentAccountId - The ID of the environment account that the environment infrastructure resources are provisioned in.

$sel:protonServiceRoleArn:Environment', environment_protonServiceRoleArn - The Amazon Resource Name (ARN) of the Proton service role that allows Proton to make calls to other services on your behalf.

$sel:provisioning:Environment', environment_provisioning - When included, indicates that the environment template is for customer provisioned and managed infrastructure.

$sel:provisioningRepository:Environment', environment_provisioningRepository - The linked repository that you use to host your rendered infrastructure templates for self-managed provisioning. A linked repository is a repository that has been registered with Proton. For more information, see CreateRepository.

$sel:spec:Environment', environment_spec - The environment spec.

Environment, environment_arn - The Amazon Resource Name (ARN) of the environment.

$sel:createdAt:Environment', environment_createdAt - The time when the environment was created.

$sel:deploymentStatus:Environment', environment_deploymentStatus - The environment deployment status.

$sel:lastDeploymentAttemptedAt:Environment', environment_lastDeploymentAttemptedAt - The time when a deployment of the environment was last attempted.

$sel:lastDeploymentSucceededAt:Environment', environment_lastDeploymentSucceededAt - The time when the environment was last deployed successfully.

Environment, environment_name - The name of the environment.

$sel:templateMajorVersion:Environment', environment_templateMajorVersion - The major version of the environment template.

$sel:templateMinorVersion:Environment', environment_templateMinorVersion - The minor version of the environment template.

$sel:templateName:Environment', environment_templateName - The Amazon Resource Name (ARN) of the environment template.

EnvironmentAccountConnection

data EnvironmentAccountConnection Source #

Detailed data of an Proton environment account connection resource.

See: newEnvironmentAccountConnection smart constructor.

Instances

Instances details
FromJSON EnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnection

Generic EnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnection

Associated Types

type Rep EnvironmentAccountConnection :: Type -> Type #

Read EnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnection

Show EnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnection

NFData EnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnection

Eq EnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnection

Hashable EnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnection

type Rep EnvironmentAccountConnection Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnection

type Rep EnvironmentAccountConnection = D1 ('MetaData "EnvironmentAccountConnection" "Amazonka.Proton.Types.EnvironmentAccountConnection" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "EnvironmentAccountConnection'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "codebuildRoleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "componentRoleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "environmentAccountId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "environmentName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))) :*: ((S1 ('MetaSel ('Just "id") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "lastModifiedAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX) :*: S1 ('MetaSel ('Just "managementAccountId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))) :*: (S1 ('MetaSel ('Just "requestedAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX) :*: (S1 ('MetaSel ('Just "roleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 EnvironmentAccountConnectionStatus))))))

newEnvironmentAccountConnection Source #

Create a value of EnvironmentAccountConnection 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:codebuildRoleArn:EnvironmentAccountConnection', environmentAccountConnection_codebuildRoleArn - The Amazon Resource Name (ARN) of an IAM service role in the environment account. Proton uses this role to provision infrastructure resources using CodeBuild-based provisioning in the associated environment account.

$sel:componentRoleArn:EnvironmentAccountConnection', environmentAccountConnection_componentRoleArn - The Amazon Resource Name (ARN) of the IAM service role that Proton uses when provisioning directly defined components in the associated environment account. It determines the scope of infrastructure that a component can provision in the account.

The environment account connection must have a componentRoleArn to allow directly defined components to be associated with any environments running in the account.

For more information about components, see Proton components in the Proton User Guide.

$sel:arn:EnvironmentAccountConnection', environmentAccountConnection_arn - The Amazon Resource Name (ARN) of the environment account connection.

$sel:environmentAccountId:EnvironmentAccountConnection', environmentAccountConnection_environmentAccountId - The environment account that's connected to the environment account connection.

$sel:environmentName:EnvironmentAccountConnection', environmentAccountConnection_environmentName - The name of the environment that's associated with the environment account connection.

$sel:id:EnvironmentAccountConnection', environmentAccountConnection_id - The ID of the environment account connection.

$sel:lastModifiedAt:EnvironmentAccountConnection', environmentAccountConnection_lastModifiedAt - The time when the environment account connection was last modified.

$sel:managementAccountId:EnvironmentAccountConnection', environmentAccountConnection_managementAccountId - The ID of the management account that's connected to the environment account connection.

$sel:requestedAt:EnvironmentAccountConnection', environmentAccountConnection_requestedAt - The time when the environment account connection request was made.

$sel:roleArn:EnvironmentAccountConnection', environmentAccountConnection_roleArn - The IAM service role that's associated with the environment account connection.

$sel:status:EnvironmentAccountConnection', environmentAccountConnection_status - The status of the environment account connection.

EnvironmentAccountConnectionSummary

data EnvironmentAccountConnectionSummary Source #

Summary data of an Proton environment account connection resource.

See: newEnvironmentAccountConnectionSummary smart constructor.

Instances

Instances details
FromJSON EnvironmentAccountConnectionSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionSummary

Generic EnvironmentAccountConnectionSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionSummary

Read EnvironmentAccountConnectionSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionSummary

Show EnvironmentAccountConnectionSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionSummary

NFData EnvironmentAccountConnectionSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionSummary

Eq EnvironmentAccountConnectionSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionSummary

Hashable EnvironmentAccountConnectionSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionSummary

type Rep EnvironmentAccountConnectionSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentAccountConnectionSummary

newEnvironmentAccountConnectionSummary Source #

Create a value of EnvironmentAccountConnectionSummary 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:componentRoleArn:EnvironmentAccountConnectionSummary', environmentAccountConnectionSummary_componentRoleArn - The Amazon Resource Name (ARN) of the IAM service role that Proton uses when provisioning directly defined components in the associated environment account. It determines the scope of infrastructure that a component can provision in the account.

The environment account connection must have a componentRoleArn to allow directly defined components to be associated with any environments running in the account.

For more information about components, see Proton components in the Proton User Guide.

$sel:arn:EnvironmentAccountConnectionSummary', environmentAccountConnectionSummary_arn - The Amazon Resource Name (ARN) of the environment account connection.

$sel:environmentAccountId:EnvironmentAccountConnectionSummary', environmentAccountConnectionSummary_environmentAccountId - The ID of the environment account that's connected to the environment account connection.

$sel:environmentName:EnvironmentAccountConnectionSummary', environmentAccountConnectionSummary_environmentName - The name of the environment that's associated with the environment account connection.

$sel:id:EnvironmentAccountConnectionSummary', environmentAccountConnectionSummary_id - The ID of the environment account connection.

$sel:lastModifiedAt:EnvironmentAccountConnectionSummary', environmentAccountConnectionSummary_lastModifiedAt - The time when the environment account connection was last modified.

$sel:managementAccountId:EnvironmentAccountConnectionSummary', environmentAccountConnectionSummary_managementAccountId - The ID of the management account that's connected to the environment account connection.

$sel:requestedAt:EnvironmentAccountConnectionSummary', environmentAccountConnectionSummary_requestedAt - The time when the environment account connection request was made.

$sel:roleArn:EnvironmentAccountConnectionSummary', environmentAccountConnectionSummary_roleArn - The IAM service role that's associated with the environment account connection.

$sel:status:EnvironmentAccountConnectionSummary', environmentAccountConnectionSummary_status - The status of the environment account connection.

EnvironmentSummary

data EnvironmentSummary Source #

Summary data of an Proton environment resource. An Proton environment is a set of resources shared across Proton services.

See: newEnvironmentSummary smart constructor.

Instances

Instances details
FromJSON EnvironmentSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentSummary

Generic EnvironmentSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentSummary

Associated Types

type Rep EnvironmentSummary :: Type -> Type #

Show EnvironmentSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentSummary

NFData EnvironmentSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentSummary

Methods

rnf :: EnvironmentSummary -> () #

Eq EnvironmentSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentSummary

Hashable EnvironmentSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentSummary

type Rep EnvironmentSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentSummary

type Rep EnvironmentSummary = D1 ('MetaData "EnvironmentSummary" "Amazonka.Proton.Types.EnvironmentSummary" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "EnvironmentSummary'" 'PrefixI 'True) ((((S1 ('MetaSel ('Just "componentRoleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "deploymentStatusMessage") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text)))) :*: (S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: S1 ('MetaSel ('Just "environmentAccountConnectionId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "environmentAccountId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "protonServiceRoleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "provisioning") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Provisioning)) :*: S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))) :*: (((S1 ('MetaSel ('Just "createdAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX) :*: S1 ('MetaSel ('Just "deploymentStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 DeploymentStatus)) :*: (S1 ('MetaSel ('Just "lastDeploymentAttemptedAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX) :*: S1 ('MetaSel ('Just "lastDeploymentSucceededAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX))) :*: ((S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "templateMajorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "templateMinorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "templateName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))))

newEnvironmentSummary Source #

Create a value of EnvironmentSummary 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:componentRoleArn:EnvironmentSummary', environmentSummary_componentRoleArn - The Amazon Resource Name (ARN) of the IAM service role that Proton uses when provisioning directly defined components in this environment. It determines the scope of infrastructure that a component can provision.

The environment must have a componentRoleArn to allow directly defined components to be associated with the environment.

For more information about components, see Proton components in the Proton User Guide.

$sel:deploymentStatusMessage:EnvironmentSummary', environmentSummary_deploymentStatusMessage - An environment deployment status message.

$sel:description:EnvironmentSummary', environmentSummary_description - The description of the environment.

$sel:environmentAccountConnectionId:EnvironmentSummary', environmentSummary_environmentAccountConnectionId - The ID of the environment account connection that the environment is associated with.

$sel:environmentAccountId:EnvironmentSummary', environmentSummary_environmentAccountId - The ID of the environment account that the environment infrastructure resources are provisioned in.

$sel:protonServiceRoleArn:EnvironmentSummary', environmentSummary_protonServiceRoleArn - The Amazon Resource Name (ARN) of the Proton service role that allows Proton to make calls to other services on your behalf.

$sel:provisioning:EnvironmentSummary', environmentSummary_provisioning - When included, indicates that the environment template is for customer provisioned and managed infrastructure.

$sel:arn:EnvironmentSummary', environmentSummary_arn - The Amazon Resource Name (ARN) of the environment.

$sel:createdAt:EnvironmentSummary', environmentSummary_createdAt - The time when the environment was created.

$sel:deploymentStatus:EnvironmentSummary', environmentSummary_deploymentStatus - The environment deployment status.

$sel:lastDeploymentAttemptedAt:EnvironmentSummary', environmentSummary_lastDeploymentAttemptedAt - The time when a deployment of the environment was last attempted.

$sel:lastDeploymentSucceededAt:EnvironmentSummary', environmentSummary_lastDeploymentSucceededAt - The time when the environment was last deployed successfully.

$sel:name:EnvironmentSummary', environmentSummary_name - The name of the environment.

$sel:templateMajorVersion:EnvironmentSummary', environmentSummary_templateMajorVersion - The major version of the environment template.

$sel:templateMinorVersion:EnvironmentSummary', environmentSummary_templateMinorVersion - The minor version of the environment template.

$sel:templateName:EnvironmentSummary', environmentSummary_templateName - The name of the environment template.

EnvironmentTemplate

data EnvironmentTemplate Source #

The environment template data.

See: newEnvironmentTemplate smart constructor.

Instances

Instances details
FromJSON EnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentTemplate

Generic EnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentTemplate

Associated Types

type Rep EnvironmentTemplate :: Type -> Type #

Show EnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentTemplate

NFData EnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentTemplate

Methods

rnf :: EnvironmentTemplate -> () #

Eq EnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentTemplate

Hashable EnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentTemplate

type Rep EnvironmentTemplate Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentTemplate

newEnvironmentTemplate Source #

Create a value of EnvironmentTemplate 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:description:EnvironmentTemplate', environmentTemplate_description - A description of the environment template.

$sel:displayName:EnvironmentTemplate', environmentTemplate_displayName - The name of the environment template as displayed in the developer interface.

$sel:encryptionKey:EnvironmentTemplate', environmentTemplate_encryptionKey - The customer provided encryption key for the environment template.

$sel:provisioning:EnvironmentTemplate', environmentTemplate_provisioning - When included, indicates that the environment template is for customer provisioned and managed infrastructure.

$sel:recommendedVersion:EnvironmentTemplate', environmentTemplate_recommendedVersion - The ID of the recommended version of the environment template.

$sel:arn:EnvironmentTemplate', environmentTemplate_arn - The Amazon Resource Name (ARN) of the environment template.

$sel:createdAt:EnvironmentTemplate', environmentTemplate_createdAt - The time when the environment template was created.

$sel:lastModifiedAt:EnvironmentTemplate', environmentTemplate_lastModifiedAt - The time when the environment template was last modified.

$sel:name:EnvironmentTemplate', environmentTemplate_name - The name of the environment template.

EnvironmentTemplateFilter

data EnvironmentTemplateFilter Source #

A search filter for environment templates.

See: newEnvironmentTemplateFilter smart constructor.

Instances

Instances details
ToJSON EnvironmentTemplateFilter Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentTemplateFilter

Generic EnvironmentTemplateFilter Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentTemplateFilter

Associated Types

type Rep EnvironmentTemplateFilter :: Type -> Type #

Read EnvironmentTemplateFilter Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentTemplateFilter

Show EnvironmentTemplateFilter Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentTemplateFilter

NFData EnvironmentTemplateFilter Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentTemplateFilter

Eq EnvironmentTemplateFilter Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentTemplateFilter

Hashable EnvironmentTemplateFilter Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentTemplateFilter

type Rep EnvironmentTemplateFilter Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentTemplateFilter

type Rep EnvironmentTemplateFilter = D1 ('MetaData "EnvironmentTemplateFilter" "Amazonka.Proton.Types.EnvironmentTemplateFilter" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "EnvironmentTemplateFilter'" 'PrefixI 'True) (S1 ('MetaSel ('Just "majorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "templateName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newEnvironmentTemplateFilter Source #

Create a value of EnvironmentTemplateFilter 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:majorVersion:EnvironmentTemplateFilter', environmentTemplateFilter_majorVersion - Include majorVersion to filter search for a major version.

$sel:templateName:EnvironmentTemplateFilter', environmentTemplateFilter_templateName - Include templateName to filter search for a template name.

EnvironmentTemplateSummary

data EnvironmentTemplateSummary Source #

The environment template data.

See: newEnvironmentTemplateSummary smart constructor.

Instances

Instances details
FromJSON EnvironmentTemplateSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentTemplateSummary

Generic EnvironmentTemplateSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentTemplateSummary

Associated Types

type Rep EnvironmentTemplateSummary :: Type -> Type #

Show EnvironmentTemplateSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentTemplateSummary

NFData EnvironmentTemplateSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentTemplateSummary

Eq EnvironmentTemplateSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentTemplateSummary

Hashable EnvironmentTemplateSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentTemplateSummary

type Rep EnvironmentTemplateSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentTemplateSummary

type Rep EnvironmentTemplateSummary = D1 ('MetaData "EnvironmentTemplateSummary" "Amazonka.Proton.Types.EnvironmentTemplateSummary" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "EnvironmentTemplateSummary'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: S1 ('MetaSel ('Just "displayName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text)))) :*: (S1 ('MetaSel ('Just "provisioning") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Provisioning)) :*: S1 ('MetaSel ('Just "recommendedVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "createdAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX)) :*: (S1 ('MetaSel ('Just "lastModifiedAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))))

newEnvironmentTemplateSummary Source #

Create a value of EnvironmentTemplateSummary 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:description:EnvironmentTemplateSummary', environmentTemplateSummary_description - A description of the environment template.

$sel:displayName:EnvironmentTemplateSummary', environmentTemplateSummary_displayName - The name of the environment template as displayed in the developer interface.

$sel:provisioning:EnvironmentTemplateSummary', environmentTemplateSummary_provisioning - When included, indicates that the environment template is for customer provisioned and managed infrastructure.

$sel:recommendedVersion:EnvironmentTemplateSummary', environmentTemplateSummary_recommendedVersion - The recommended version of the environment template.

$sel:arn:EnvironmentTemplateSummary', environmentTemplateSummary_arn - The Amazon Resource Name (ARN) of the environment template.

$sel:createdAt:EnvironmentTemplateSummary', environmentTemplateSummary_createdAt - The time when the environment template was created.

$sel:lastModifiedAt:EnvironmentTemplateSummary', environmentTemplateSummary_lastModifiedAt - The time when the environment template was last modified.

$sel:name:EnvironmentTemplateSummary', environmentTemplateSummary_name - The name of the environment template.

EnvironmentTemplateVersion

data EnvironmentTemplateVersion Source #

The environment template version data.

See: newEnvironmentTemplateVersion smart constructor.

Instances

Instances details
FromJSON EnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentTemplateVersion

Generic EnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentTemplateVersion

Associated Types

type Rep EnvironmentTemplateVersion :: Type -> Type #

Show EnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentTemplateVersion

NFData EnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentTemplateVersion

Eq EnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentTemplateVersion

Hashable EnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentTemplateVersion

type Rep EnvironmentTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentTemplateVersion

type Rep EnvironmentTemplateVersion = D1 ('MetaData "EnvironmentTemplateVersion" "Amazonka.Proton.Types.EnvironmentTemplateVersion" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "EnvironmentTemplateVersion'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: S1 ('MetaSel ('Just "recommendedMinorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "schema") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: (S1 ('MetaSel ('Just "statusMessage") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))) :*: ((S1 ('MetaSel ('Just "createdAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX) :*: (S1 ('MetaSel ('Just "lastModifiedAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX) :*: S1 ('MetaSel ('Just "majorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))) :*: (S1 ('MetaSel ('Just "minorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 TemplateVersionStatus) :*: S1 ('MetaSel ('Just "templateName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))))

newEnvironmentTemplateVersion Source #

Create a value of EnvironmentTemplateVersion 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:description:EnvironmentTemplateVersion', environmentTemplateVersion_description - A description of the minor version of an environment template.

$sel:recommendedMinorVersion:EnvironmentTemplateVersion', environmentTemplateVersion_recommendedMinorVersion - The recommended minor version of the environment template.

$sel:schema:EnvironmentTemplateVersion', environmentTemplateVersion_schema - The schema of the version of an environment template.

$sel:statusMessage:EnvironmentTemplateVersion', environmentTemplateVersion_statusMessage - The status message of the version of an environment template.

$sel:arn:EnvironmentTemplateVersion', environmentTemplateVersion_arn - The Amazon Resource Name (ARN) of the version of an environment template.

$sel:createdAt:EnvironmentTemplateVersion', environmentTemplateVersion_createdAt - The time when the version of an environment template was created.

$sel:lastModifiedAt:EnvironmentTemplateVersion', environmentTemplateVersion_lastModifiedAt - The time when the version of an environment template was last modified.

$sel:majorVersion:EnvironmentTemplateVersion', environmentTemplateVersion_majorVersion - The latest major version that's associated with the version of an environment template.

$sel:minorVersion:EnvironmentTemplateVersion', environmentTemplateVersion_minorVersion - The minor version of an environment template.

$sel:status:EnvironmentTemplateVersion', environmentTemplateVersion_status - The status of the version of an environment template.

$sel:templateName:EnvironmentTemplateVersion', environmentTemplateVersion_templateName - The name of the version of an environment template.

EnvironmentTemplateVersionSummary

data EnvironmentTemplateVersionSummary Source #

A summary of the version of an environment template detail data.

See: newEnvironmentTemplateVersionSummary smart constructor.

Instances

Instances details
FromJSON EnvironmentTemplateVersionSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentTemplateVersionSummary

Generic EnvironmentTemplateVersionSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentTemplateVersionSummary

Associated Types

type Rep EnvironmentTemplateVersionSummary :: Type -> Type #

Show EnvironmentTemplateVersionSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentTemplateVersionSummary

NFData EnvironmentTemplateVersionSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentTemplateVersionSummary

Eq EnvironmentTemplateVersionSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentTemplateVersionSummary

Hashable EnvironmentTemplateVersionSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentTemplateVersionSummary

type Rep EnvironmentTemplateVersionSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.EnvironmentTemplateVersionSummary

newEnvironmentTemplateVersionSummary Source #

Create a value of EnvironmentTemplateVersionSummary 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:description:EnvironmentTemplateVersionSummary', environmentTemplateVersionSummary_description - A description of the version of an environment template.

$sel:recommendedMinorVersion:EnvironmentTemplateVersionSummary', environmentTemplateVersionSummary_recommendedMinorVersion - The recommended minor version of the environment template.

$sel:statusMessage:EnvironmentTemplateVersionSummary', environmentTemplateVersionSummary_statusMessage - The status message of the version of an environment template.

$sel:arn:EnvironmentTemplateVersionSummary', environmentTemplateVersionSummary_arn - The Amazon Resource Name (ARN) of the version of an environment template.

$sel:createdAt:EnvironmentTemplateVersionSummary', environmentTemplateVersionSummary_createdAt - The time when the version of an environment template was created.

$sel:lastModifiedAt:EnvironmentTemplateVersionSummary', environmentTemplateVersionSummary_lastModifiedAt - The time when the version of an environment template was last modified.

$sel:majorVersion:EnvironmentTemplateVersionSummary', environmentTemplateVersionSummary_majorVersion - The latest major version that's associated with the version of an environment template.

$sel:minorVersion:EnvironmentTemplateVersionSummary', environmentTemplateVersionSummary_minorVersion - The version of an environment template.

$sel:status:EnvironmentTemplateVersionSummary', environmentTemplateVersionSummary_status - The status of the version of an environment template.

$sel:templateName:EnvironmentTemplateVersionSummary', environmentTemplateVersionSummary_templateName - The name of the environment template.

ListServiceInstancesFilter

data ListServiceInstancesFilter Source #

A filtering criterion to scope down the result list of the ListServiceInstances action.

See: newListServiceInstancesFilter smart constructor.

Instances

Instances details
ToJSON ListServiceInstancesFilter Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesFilter

Generic ListServiceInstancesFilter Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesFilter

Associated Types

type Rep ListServiceInstancesFilter :: Type -> Type #

Read ListServiceInstancesFilter Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesFilter

Show ListServiceInstancesFilter Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesFilter

NFData ListServiceInstancesFilter Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesFilter

Eq ListServiceInstancesFilter Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesFilter

Hashable ListServiceInstancesFilter Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesFilter

type Rep ListServiceInstancesFilter Source # 
Instance details

Defined in Amazonka.Proton.Types.ListServiceInstancesFilter

type Rep ListServiceInstancesFilter = D1 ('MetaData "ListServiceInstancesFilter" "Amazonka.Proton.Types.ListServiceInstancesFilter" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ListServiceInstancesFilter'" 'PrefixI 'True) (S1 ('MetaSel ('Just "key") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ListServiceInstancesFilterBy)) :*: S1 ('MetaSel ('Just "value") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newListServiceInstancesFilter :: ListServiceInstancesFilter Source #

Create a value of ListServiceInstancesFilter 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:key:ListServiceInstancesFilter', listServiceInstancesFilter_key - The name of a filtering criterion.

$sel:value:ListServiceInstancesFilter', listServiceInstancesFilter_value - A value to filter by.

With the date/time keys (*At{Before,After}), the value is a valid RFC 3339 string with no UTC offset and with an optional fractional precision (for example, 1985-04-12T23:20:50.52Z).

Output

data Output Source #

An infrastructure as code defined resource output.

See: newOutput smart constructor.

Constructors

Output' (Maybe Text) (Maybe Text) 

Instances

Instances details
FromJSON Output Source # 
Instance details

Defined in Amazonka.Proton.Types.Output

ToJSON Output Source # 
Instance details

Defined in Amazonka.Proton.Types.Output

Generic Output Source # 
Instance details

Defined in Amazonka.Proton.Types.Output

Associated Types

type Rep Output :: Type -> Type #

Methods

from :: Output -> Rep Output x #

to :: Rep Output x -> Output #

Show Output Source # 
Instance details

Defined in Amazonka.Proton.Types.Output

NFData Output Source # 
Instance details

Defined in Amazonka.Proton.Types.Output

Methods

rnf :: Output -> () #

Eq Output Source # 
Instance details

Defined in Amazonka.Proton.Types.Output

Methods

(==) :: Output -> Output -> Bool #

(/=) :: Output -> Output -> Bool #

Hashable Output Source # 
Instance details

Defined in Amazonka.Proton.Types.Output

Methods

hashWithSalt :: Int -> Output -> Int #

hash :: Output -> Int #

type Rep Output Source # 
Instance details

Defined in Amazonka.Proton.Types.Output

type Rep Output = D1 ('MetaData "Output" "Amazonka.Proton.Types.Output" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "Output'" 'PrefixI 'True) (S1 ('MetaSel ('Just "key") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "valueString") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newOutput :: Output Source #

Create a value of Output 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:key:Output', output_key - The output key.

$sel:valueString:Output', output_valueString - The output value.

ProvisionedResource

data ProvisionedResource Source #

Detail data for a provisioned resource.

See: newProvisionedResource smart constructor.

Instances

Instances details
FromJSON ProvisionedResource Source # 
Instance details

Defined in Amazonka.Proton.Types.ProvisionedResource

Generic ProvisionedResource Source # 
Instance details

Defined in Amazonka.Proton.Types.ProvisionedResource

Associated Types

type Rep ProvisionedResource :: Type -> Type #

Read ProvisionedResource Source # 
Instance details

Defined in Amazonka.Proton.Types.ProvisionedResource

Show ProvisionedResource Source # 
Instance details

Defined in Amazonka.Proton.Types.ProvisionedResource

NFData ProvisionedResource Source # 
Instance details

Defined in Amazonka.Proton.Types.ProvisionedResource

Methods

rnf :: ProvisionedResource -> () #

Eq ProvisionedResource Source # 
Instance details

Defined in Amazonka.Proton.Types.ProvisionedResource

Hashable ProvisionedResource Source # 
Instance details

Defined in Amazonka.Proton.Types.ProvisionedResource

type Rep ProvisionedResource Source # 
Instance details

Defined in Amazonka.Proton.Types.ProvisionedResource

type Rep ProvisionedResource = D1 ('MetaData "ProvisionedResource" "Amazonka.Proton.Types.ProvisionedResource" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ProvisionedResource'" 'PrefixI 'True) (S1 ('MetaSel ('Just "identifier") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "provisioningEngine") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ProvisionedResourceEngine)))))

newProvisionedResource :: ProvisionedResource Source #

Create a value of ProvisionedResource 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:identifier:ProvisionedResource', provisionedResource_identifier - The provisioned resource identifier.

$sel:name:ProvisionedResource', provisionedResource_name - The provisioned resource name.

$sel:provisioningEngine:ProvisionedResource', provisionedResource_provisioningEngine - The resource provisioning engine. At this time, CLOUDFORMATION can be used for Amazon Web Services-managed provisioning, and TERRAFORM can be used for self-managed provisioning.

For more information, see Self-managed provisioning in the Proton User Guide.

Repository

data Repository Source #

Detailed data of a linked repository—a repository that has been registered with Proton.

See: newRepository smart constructor.

Instances

Instances details
FromJSON Repository Source # 
Instance details

Defined in Amazonka.Proton.Types.Repository

Generic Repository Source # 
Instance details

Defined in Amazonka.Proton.Types.Repository

Associated Types

type Rep Repository :: Type -> Type #

Read Repository Source # 
Instance details

Defined in Amazonka.Proton.Types.Repository

Show Repository Source # 
Instance details

Defined in Amazonka.Proton.Types.Repository

NFData Repository Source # 
Instance details

Defined in Amazonka.Proton.Types.Repository

Methods

rnf :: Repository -> () #

Eq Repository Source # 
Instance details

Defined in Amazonka.Proton.Types.Repository

Hashable Repository Source # 
Instance details

Defined in Amazonka.Proton.Types.Repository

type Rep Repository Source # 
Instance details

Defined in Amazonka.Proton.Types.Repository

type Rep Repository = D1 ('MetaData "Repository" "Amazonka.Proton.Types.Repository" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "Repository'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "encryptionKey") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "connectionArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "provider") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 RepositoryProvider)))))

newRepository Source #

Create a value of Repository 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:encryptionKey:Repository', repository_encryptionKey - Your customer Amazon Web Services KMS encryption key.

$sel:arn:Repository', repository_arn - The Amazon Resource Name (ARN) of the linked repository.

$sel:connectionArn:Repository', repository_connectionArn - The Amazon Resource Name (ARN) of your AWS CodeStar connection that connects Proton to your repository provider account.

$sel:name:Repository', repository_name - The repository name.

$sel:provider:Repository', repository_provider - The repository provider.

RepositoryBranch

data RepositoryBranch Source #

Detail data for a linked repository branch.

See: newRepositoryBranch smart constructor.

Instances

Instances details
FromJSON RepositoryBranch Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositoryBranch

Generic RepositoryBranch Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositoryBranch

Associated Types

type Rep RepositoryBranch :: Type -> Type #

Read RepositoryBranch Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositoryBranch

Show RepositoryBranch Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositoryBranch

NFData RepositoryBranch Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositoryBranch

Methods

rnf :: RepositoryBranch -> () #

Eq RepositoryBranch Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositoryBranch

Hashable RepositoryBranch Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositoryBranch

type Rep RepositoryBranch Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositoryBranch

type Rep RepositoryBranch = D1 ('MetaData "RepositoryBranch" "Amazonka.Proton.Types.RepositoryBranch" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "RepositoryBranch'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "branch") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "provider") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 RepositoryProvider))))

newRepositoryBranch Source #

Create a value of RepositoryBranch 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:arn:RepositoryBranch', repositoryBranch_arn - The Amazon Resource Name (ARN) of the linked repository.

$sel:branch:RepositoryBranch', repositoryBranch_branch - The repository branch.

$sel:name:RepositoryBranch', repositoryBranch_name - The repository name.

$sel:provider:RepositoryBranch', repositoryBranch_provider - The repository provider.

RepositoryBranchInput

data RepositoryBranchInput Source #

Detail input data for a linked repository branch.

See: newRepositoryBranchInput smart constructor.

Instances

Instances details
ToJSON RepositoryBranchInput Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositoryBranchInput

Generic RepositoryBranchInput Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositoryBranchInput

Associated Types

type Rep RepositoryBranchInput :: Type -> Type #

Read RepositoryBranchInput Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositoryBranchInput

Show RepositoryBranchInput Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositoryBranchInput

NFData RepositoryBranchInput Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositoryBranchInput

Methods

rnf :: RepositoryBranchInput -> () #

Eq RepositoryBranchInput Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositoryBranchInput

Hashable RepositoryBranchInput Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositoryBranchInput

type Rep RepositoryBranchInput Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositoryBranchInput

type Rep RepositoryBranchInput = D1 ('MetaData "RepositoryBranchInput" "Amazonka.Proton.Types.RepositoryBranchInput" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "RepositoryBranchInput'" 'PrefixI 'True) (S1 ('MetaSel ('Just "branch") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "provider") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 RepositoryProvider))))

newRepositoryBranchInput Source #

Create a value of RepositoryBranchInput 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:branch:RepositoryBranchInput', repositoryBranchInput_branch - The repository branch.

$sel:name:RepositoryBranchInput', repositoryBranchInput_name - The repository name.

$sel:provider:RepositoryBranchInput', repositoryBranchInput_provider - The repository provider.

RepositorySummary

data RepositorySummary Source #

Summary data of a linked repository—a repository that has been registered with Proton.

See: newRepositorySummary smart constructor.

Instances

Instances details
FromJSON RepositorySummary Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySummary

Generic RepositorySummary Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySummary

Associated Types

type Rep RepositorySummary :: Type -> Type #

Read RepositorySummary Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySummary

Show RepositorySummary Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySummary

NFData RepositorySummary Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySummary

Methods

rnf :: RepositorySummary -> () #

Eq RepositorySummary Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySummary

Hashable RepositorySummary Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySummary

type Rep RepositorySummary Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySummary

type Rep RepositorySummary = D1 ('MetaData "RepositorySummary" "Amazonka.Proton.Types.RepositorySummary" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "RepositorySummary'" 'PrefixI 'True) (S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "provider") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 RepositoryProvider))))

newRepositorySummary Source #

Create a value of RepositorySummary 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:arn:RepositorySummary', repositorySummary_arn - The Amazon Resource Name (ARN) of the linked repository.

$sel:name:RepositorySummary', repositorySummary_name - The repository name.

$sel:provider:RepositorySummary', repositorySummary_provider - The repository provider.

RepositorySyncAttempt

data RepositorySyncAttempt Source #

Detail data for a repository sync attempt activated by a push to a repository.

See: newRepositorySyncAttempt smart constructor.

Instances

Instances details
FromJSON RepositorySyncAttempt Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncAttempt

Generic RepositorySyncAttempt Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncAttempt

Associated Types

type Rep RepositorySyncAttempt :: Type -> Type #

Read RepositorySyncAttempt Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncAttempt

Show RepositorySyncAttempt Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncAttempt

NFData RepositorySyncAttempt Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncAttempt

Methods

rnf :: RepositorySyncAttempt -> () #

Eq RepositorySyncAttempt Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncAttempt

Hashable RepositorySyncAttempt Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncAttempt

type Rep RepositorySyncAttempt Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncAttempt

type Rep RepositorySyncAttempt = D1 ('MetaData "RepositorySyncAttempt" "Amazonka.Proton.Types.RepositorySyncAttempt" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "RepositorySyncAttempt'" 'PrefixI 'True) (S1 ('MetaSel ('Just "events") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [RepositorySyncEvent]) :*: (S1 ('MetaSel ('Just "startedAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX) :*: S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 RepositorySyncStatus))))

newRepositorySyncAttempt Source #

Create a value of RepositorySyncAttempt 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:events:RepositorySyncAttempt', repositorySyncAttempt_events - Detail data for sync attempt events.

$sel:startedAt:RepositorySyncAttempt', repositorySyncAttempt_startedAt - The time when the sync attempt started.

$sel:status:RepositorySyncAttempt', repositorySyncAttempt_status - The sync attempt status.

RepositorySyncDefinition

data RepositorySyncDefinition Source #

A repository sync definition.

See: newRepositorySyncDefinition smart constructor.

Instances

Instances details
FromJSON RepositorySyncDefinition Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncDefinition

Generic RepositorySyncDefinition Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncDefinition

Associated Types

type Rep RepositorySyncDefinition :: Type -> Type #

Read RepositorySyncDefinition Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncDefinition

Show RepositorySyncDefinition Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncDefinition

NFData RepositorySyncDefinition Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncDefinition

Eq RepositorySyncDefinition Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncDefinition

Hashable RepositorySyncDefinition Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncDefinition

type Rep RepositorySyncDefinition Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncDefinition

type Rep RepositorySyncDefinition = D1 ('MetaData "RepositorySyncDefinition" "Amazonka.Proton.Types.RepositorySyncDefinition" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "RepositorySyncDefinition'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "branch") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "directory") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "parent") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "target") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newRepositorySyncDefinition Source #

Create a value of RepositorySyncDefinition 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:branch:RepositorySyncDefinition', repositorySyncDefinition_branch - The repository branch.

$sel:directory:RepositorySyncDefinition', repositorySyncDefinition_directory - The directory in the repository.

$sel:parent:RepositorySyncDefinition', repositorySyncDefinition_parent - The resource that is synced from.

$sel:target:RepositorySyncDefinition', repositorySyncDefinition_target - The resource that is synced to.

RepositorySyncEvent

data RepositorySyncEvent Source #

Repository sync event detail data for a sync attempt.

See: newRepositorySyncEvent smart constructor.

Instances

Instances details
FromJSON RepositorySyncEvent Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncEvent

Generic RepositorySyncEvent Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncEvent

Associated Types

type Rep RepositorySyncEvent :: Type -> Type #

Read RepositorySyncEvent Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncEvent

Show RepositorySyncEvent Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncEvent

NFData RepositorySyncEvent Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncEvent

Methods

rnf :: RepositorySyncEvent -> () #

Eq RepositorySyncEvent Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncEvent

Hashable RepositorySyncEvent Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncEvent

type Rep RepositorySyncEvent Source # 
Instance details

Defined in Amazonka.Proton.Types.RepositorySyncEvent

type Rep RepositorySyncEvent = D1 ('MetaData "RepositorySyncEvent" "Amazonka.Proton.Types.RepositorySyncEvent" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "RepositorySyncEvent'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "externalId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "event") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "time") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX) :*: S1 ('MetaSel ('Just "type'") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newRepositorySyncEvent Source #

Create a value of RepositorySyncEvent 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:externalId:RepositorySyncEvent', repositorySyncEvent_externalId - The external ID of the sync event.

$sel:event:RepositorySyncEvent', repositorySyncEvent_event - Event detail for a repository sync attempt.

$sel:time:RepositorySyncEvent', repositorySyncEvent_time - The time that the sync event occurred.

$sel:type':RepositorySyncEvent', repositorySyncEvent_type - The type of event.

ResourceSyncAttempt

data ResourceSyncAttempt Source #

Detail data for a resource sync attempt activated by a push to a repository.

See: newResourceSyncAttempt smart constructor.

Instances

Instances details
FromJSON ResourceSyncAttempt Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceSyncAttempt

Generic ResourceSyncAttempt Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceSyncAttempt

Associated Types

type Rep ResourceSyncAttempt :: Type -> Type #

Read ResourceSyncAttempt Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceSyncAttempt

Show ResourceSyncAttempt Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceSyncAttempt

NFData ResourceSyncAttempt Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceSyncAttempt

Methods

rnf :: ResourceSyncAttempt -> () #

Eq ResourceSyncAttempt Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceSyncAttempt

Hashable ResourceSyncAttempt Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceSyncAttempt

type Rep ResourceSyncAttempt Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceSyncAttempt

type Rep ResourceSyncAttempt = D1 ('MetaData "ResourceSyncAttempt" "Amazonka.Proton.Types.ResourceSyncAttempt" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ResourceSyncAttempt'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "events") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [ResourceSyncEvent]) :*: (S1 ('MetaSel ('Just "initialRevision") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Revision) :*: S1 ('MetaSel ('Just "startedAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX))) :*: (S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ResourceSyncStatus) :*: (S1 ('MetaSel ('Just "target") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "targetRevision") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Revision)))))

newResourceSyncAttempt Source #

Create a value of ResourceSyncAttempt 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:events:ResourceSyncAttempt', resourceSyncAttempt_events - An array of events with detail data.

$sel:initialRevision:ResourceSyncAttempt', resourceSyncAttempt_initialRevision - Detail data for the initial repository commit, path and push.

$sel:startedAt:ResourceSyncAttempt', resourceSyncAttempt_startedAt - The time when the sync attempt started.

$sel:status:ResourceSyncAttempt', resourceSyncAttempt_status - The status of the sync attempt.

$sel:target:ResourceSyncAttempt', resourceSyncAttempt_target - The resource that is synced to.

$sel:targetRevision:ResourceSyncAttempt', resourceSyncAttempt_targetRevision - Detail data for the target revision.

ResourceSyncEvent

data ResourceSyncEvent Source #

Detail data for a resource sync event.

See: newResourceSyncEvent smart constructor.

Instances

Instances details
FromJSON ResourceSyncEvent Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceSyncEvent

Generic ResourceSyncEvent Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceSyncEvent

Associated Types

type Rep ResourceSyncEvent :: Type -> Type #

Read ResourceSyncEvent Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceSyncEvent

Show ResourceSyncEvent Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceSyncEvent

NFData ResourceSyncEvent Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceSyncEvent

Methods

rnf :: ResourceSyncEvent -> () #

Eq ResourceSyncEvent Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceSyncEvent

Hashable ResourceSyncEvent Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceSyncEvent

type Rep ResourceSyncEvent Source # 
Instance details

Defined in Amazonka.Proton.Types.ResourceSyncEvent

type Rep ResourceSyncEvent = D1 ('MetaData "ResourceSyncEvent" "Amazonka.Proton.Types.ResourceSyncEvent" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ResourceSyncEvent'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "externalId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "event") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "time") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX) :*: S1 ('MetaSel ('Just "type'") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newResourceSyncEvent Source #

Create a value of ResourceSyncEvent 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:externalId:ResourceSyncEvent', resourceSyncEvent_externalId - The external ID for the event.

$sel:event:ResourceSyncEvent', resourceSyncEvent_event - A resource sync event.

$sel:time:ResourceSyncEvent', resourceSyncEvent_time - The time when the event occurred.

$sel:type':ResourceSyncEvent', resourceSyncEvent_type - The type of event.

Revision

data Revision Source #

Revision detail data for a commit and push that activates a sync attempt

See: newRevision smart constructor.

Instances

Instances details
FromJSON Revision Source # 
Instance details

Defined in Amazonka.Proton.Types.Revision

Generic Revision Source # 
Instance details

Defined in Amazonka.Proton.Types.Revision

Associated Types

type Rep Revision :: Type -> Type #

Methods

from :: Revision -> Rep Revision x #

to :: Rep Revision x -> Revision #

Read Revision Source # 
Instance details

Defined in Amazonka.Proton.Types.Revision

Show Revision Source # 
Instance details

Defined in Amazonka.Proton.Types.Revision

NFData Revision Source # 
Instance details

Defined in Amazonka.Proton.Types.Revision

Methods

rnf :: Revision -> () #

Eq Revision Source # 
Instance details

Defined in Amazonka.Proton.Types.Revision

Hashable Revision Source # 
Instance details

Defined in Amazonka.Proton.Types.Revision

Methods

hashWithSalt :: Int -> Revision -> Int #

hash :: Revision -> Int #

type Rep Revision Source # 
Instance details

Defined in Amazonka.Proton.Types.Revision

type Rep Revision = D1 ('MetaData "Revision" "Amazonka.Proton.Types.Revision" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "Revision'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "branch") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "directory") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "repositoryName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "repositoryProvider") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 RepositoryProvider) :*: S1 ('MetaSel ('Just "sha") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))))

newRevision Source #

Create a value of Revision 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:branch:Revision', revision_branch - The repository branch.

$sel:directory:Revision', revision_directory - The repository directory changed by a commit and push that activated the sync attempt.

$sel:repositoryName:Revision', revision_repositoryName - The repository name.

$sel:repositoryProvider:Revision', revision_repositoryProvider - The repository provider.

$sel:sha:Revision', revision_sha - The secure hash algorithm (SHA) hash for the revision.

S3ObjectSource

data S3ObjectSource Source #

Template bundle S3 bucket data.

See: newS3ObjectSource smart constructor.

Constructors

S3ObjectSource' Text Text 

Instances

Instances details
ToJSON S3ObjectSource Source # 
Instance details

Defined in Amazonka.Proton.Types.S3ObjectSource

Generic S3ObjectSource Source # 
Instance details

Defined in Amazonka.Proton.Types.S3ObjectSource

Associated Types

type Rep S3ObjectSource :: Type -> Type #

Read S3ObjectSource Source # 
Instance details

Defined in Amazonka.Proton.Types.S3ObjectSource

Show S3ObjectSource Source # 
Instance details

Defined in Amazonka.Proton.Types.S3ObjectSource

NFData S3ObjectSource Source # 
Instance details

Defined in Amazonka.Proton.Types.S3ObjectSource

Methods

rnf :: S3ObjectSource -> () #

Eq S3ObjectSource Source # 
Instance details

Defined in Amazonka.Proton.Types.S3ObjectSource

Hashable S3ObjectSource Source # 
Instance details

Defined in Amazonka.Proton.Types.S3ObjectSource

type Rep S3ObjectSource Source # 
Instance details

Defined in Amazonka.Proton.Types.S3ObjectSource

type Rep S3ObjectSource = D1 ('MetaData "S3ObjectSource" "Amazonka.Proton.Types.S3ObjectSource" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "S3ObjectSource'" 'PrefixI 'True) (S1 ('MetaSel ('Just "bucket") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "key") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newS3ObjectSource Source #

Create a value of S3ObjectSource 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:bucket:S3ObjectSource', s3ObjectSource_bucket - The name of the S3 bucket that contains a template bundle.

$sel:key:S3ObjectSource', s3ObjectSource_key - The path to the S3 bucket that contains a template bundle.

Service

data Service Source #

Detailed data of an Proton service resource.

See: newService smart constructor.

Instances

Instances details
FromJSON Service Source # 
Instance details

Defined in Amazonka.Proton.Types.Service

Generic Service Source # 
Instance details

Defined in Amazonka.Proton.Types.Service

Associated Types

type Rep Service :: Type -> Type #

Methods

from :: Service -> Rep Service x #

to :: Rep Service x -> Service #

Show Service Source # 
Instance details

Defined in Amazonka.Proton.Types.Service

NFData Service Source # 
Instance details

Defined in Amazonka.Proton.Types.Service

Methods

rnf :: Service -> () #

Eq Service Source # 
Instance details

Defined in Amazonka.Proton.Types.Service

Methods

(==) :: Service -> Service -> Bool #

(/=) :: Service -> Service -> Bool #

Hashable Service Source # 
Instance details

Defined in Amazonka.Proton.Types.Service

Methods

hashWithSalt :: Int -> Service -> Int #

hash :: Service -> Int #

type Rep Service Source # 
Instance details

Defined in Amazonka.Proton.Types.Service

type Rep Service = D1 ('MetaData "Service" "Amazonka.Proton.Types.Service" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "Service'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "branchName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: S1 ('MetaSel ('Just "pipeline") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ServicePipeline)))) :*: (S1 ('MetaSel ('Just "repositoryConnectionArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "repositoryId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "statusMessage") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text)))))) :*: ((S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "createdAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX) :*: S1 ('MetaSel ('Just "lastModifiedAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX))) :*: ((S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "spec") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Sensitive Text))) :*: (S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ServiceStatus) :*: S1 ('MetaSel ('Just "templateName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))))

newService Source #

Create a value of Service 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:branchName:Service', service_branchName - The name of the code repository branch that holds the code that's deployed in Proton.

$sel:description:Service', service_description - A description of the service.

$sel:pipeline:Service', service_pipeline - The service pipeline detail data.

$sel:repositoryConnectionArn:Service', service_repositoryConnectionArn - The Amazon Resource Name (ARN) of the repository connection. For more information, see Setting up an AWS CodeStar connection in the Proton User Guide.

$sel:repositoryId:Service', service_repositoryId - The ID of the source code repository.

$sel:statusMessage:Service', service_statusMessage - A service status message.

Service, service_arn - The Amazon Resource Name (ARN) of the service.

Service, service_createdAt - The time when the service was created.

$sel:lastModifiedAt:Service', service_lastModifiedAt - The time when the service was last modified.

$sel:name:Service', service_name - The name of the service.

Service, service_spec - The formatted specification that defines the service.

$sel:status:Service', service_status - The status of the service.

Service, service_templateName - The name of the service template.

ServiceInstance

data ServiceInstance Source #

Detailed data of an Proton service instance resource.

See: newServiceInstance smart constructor.

Instances

Instances details
FromJSON ServiceInstance Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceInstance

Generic ServiceInstance Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceInstance

Associated Types

type Rep ServiceInstance :: Type -> Type #

Show ServiceInstance Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceInstance

NFData ServiceInstance Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceInstance

Methods

rnf :: ServiceInstance -> () #

Eq ServiceInstance Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceInstance

Hashable ServiceInstance Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceInstance

type Rep ServiceInstance Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceInstance

type Rep ServiceInstance = D1 ('MetaData "ServiceInstance" "Amazonka.Proton.Types.ServiceInstance" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ServiceInstance'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "deploymentStatusMessage") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: (S1 ('MetaSel ('Just "spec") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))) :*: (S1 ('MetaSel ('Just "createdAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX) :*: (S1 ('MetaSel ('Just "deploymentStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 DeploymentStatus) :*: S1 ('MetaSel ('Just "environmentName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))) :*: ((S1 ('MetaSel ('Just "lastDeploymentAttemptedAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX) :*: (S1 ('MetaSel ('Just "lastDeploymentSucceededAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))) :*: ((S1 ('MetaSel ('Just "serviceName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "templateMajorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "templateMinorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "templateName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))))

newServiceInstance Source #

Create a value of ServiceInstance 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:deploymentStatusMessage:ServiceInstance', serviceInstance_deploymentStatusMessage - The message associated with the service instance deployment status.

$sel:spec:ServiceInstance', serviceInstance_spec - The service spec that was used to create the service instance.

$sel:arn:ServiceInstance', serviceInstance_arn - The Amazon Resource Name (ARN) of the service instance.

$sel:createdAt:ServiceInstance', serviceInstance_createdAt - The time when the service instance was created.

$sel:deploymentStatus:ServiceInstance', serviceInstance_deploymentStatus - The service instance deployment status.

$sel:environmentName:ServiceInstance', serviceInstance_environmentName - The name of the environment that the service instance was deployed into.

$sel:lastDeploymentAttemptedAt:ServiceInstance', serviceInstance_lastDeploymentAttemptedAt - The time when a deployment of the service instance was last attempted.

$sel:lastDeploymentSucceededAt:ServiceInstance', serviceInstance_lastDeploymentSucceededAt - The time when the service instance was last deployed successfully.

$sel:name:ServiceInstance', serviceInstance_name - The name of the service instance.

$sel:serviceName:ServiceInstance', serviceInstance_serviceName - The name of the service that the service instance belongs to.

$sel:templateMajorVersion:ServiceInstance', serviceInstance_templateMajorVersion - The major version of the service template that was used to create the service instance.

$sel:templateMinorVersion:ServiceInstance', serviceInstance_templateMinorVersion - The minor version of the service template that was used to create the service instance.

$sel:templateName:ServiceInstance', serviceInstance_templateName - The name of the service template that was used to create the service instance.

ServiceInstanceSummary

data ServiceInstanceSummary Source #

Summary data of an Proton service instance resource.

See: newServiceInstanceSummary smart constructor.

Instances

Instances details
FromJSON ServiceInstanceSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceInstanceSummary

Generic ServiceInstanceSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceInstanceSummary

Associated Types

type Rep ServiceInstanceSummary :: Type -> Type #

Show ServiceInstanceSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceInstanceSummary

NFData ServiceInstanceSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceInstanceSummary

Methods

rnf :: ServiceInstanceSummary -> () #

Eq ServiceInstanceSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceInstanceSummary

Hashable ServiceInstanceSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceInstanceSummary

type Rep ServiceInstanceSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceInstanceSummary

type Rep ServiceInstanceSummary = D1 ('MetaData "ServiceInstanceSummary" "Amazonka.Proton.Types.ServiceInstanceSummary" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ServiceInstanceSummary'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "deploymentStatusMessage") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: (S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "createdAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX))) :*: (S1 ('MetaSel ('Just "deploymentStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 DeploymentStatus) :*: (S1 ('MetaSel ('Just "environmentName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "lastDeploymentAttemptedAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX)))) :*: ((S1 ('MetaSel ('Just "lastDeploymentSucceededAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "serviceName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))) :*: (S1 ('MetaSel ('Just "templateMajorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "templateMinorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "templateName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))))

newServiceInstanceSummary Source #

Create a value of ServiceInstanceSummary 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:deploymentStatusMessage:ServiceInstanceSummary', serviceInstanceSummary_deploymentStatusMessage - A service instance deployment status message.

$sel:arn:ServiceInstanceSummary', serviceInstanceSummary_arn - The Amazon Resource Name (ARN) of the service instance.

$sel:createdAt:ServiceInstanceSummary', serviceInstanceSummary_createdAt - The time when the service instance was created.

$sel:deploymentStatus:ServiceInstanceSummary', serviceInstanceSummary_deploymentStatus - The service instance deployment status.

$sel:environmentName:ServiceInstanceSummary', serviceInstanceSummary_environmentName - The name of the environment that the service instance was deployed into.

$sel:lastDeploymentAttemptedAt:ServiceInstanceSummary', serviceInstanceSummary_lastDeploymentAttemptedAt - The time when a deployment of the service was last attempted.

$sel:lastDeploymentSucceededAt:ServiceInstanceSummary', serviceInstanceSummary_lastDeploymentSucceededAt - The time when the service was last deployed successfully.

$sel:name:ServiceInstanceSummary', serviceInstanceSummary_name - The name of the service instance.

$sel:serviceName:ServiceInstanceSummary', serviceInstanceSummary_serviceName - The name of the service that the service instance belongs to.

$sel:templateMajorVersion:ServiceInstanceSummary', serviceInstanceSummary_templateMajorVersion - The service instance template major version.

$sel:templateMinorVersion:ServiceInstanceSummary', serviceInstanceSummary_templateMinorVersion - The service instance template minor version.

$sel:templateName:ServiceInstanceSummary', serviceInstanceSummary_templateName - The name of the service template.

ServicePipeline

data ServicePipeline Source #

Detailed data of an Proton service instance pipeline resource.

See: newServicePipeline smart constructor.

Instances

Instances details
FromJSON ServicePipeline Source # 
Instance details

Defined in Amazonka.Proton.Types.ServicePipeline

Generic ServicePipeline Source # 
Instance details

Defined in Amazonka.Proton.Types.ServicePipeline

Associated Types

type Rep ServicePipeline :: Type -> Type #

Show ServicePipeline Source # 
Instance details

Defined in Amazonka.Proton.Types.ServicePipeline

NFData ServicePipeline Source # 
Instance details

Defined in Amazonka.Proton.Types.ServicePipeline

Methods

rnf :: ServicePipeline -> () #

Eq ServicePipeline Source # 
Instance details

Defined in Amazonka.Proton.Types.ServicePipeline

Hashable ServicePipeline Source # 
Instance details

Defined in Amazonka.Proton.Types.ServicePipeline

type Rep ServicePipeline Source # 
Instance details

Defined in Amazonka.Proton.Types.ServicePipeline

type Rep ServicePipeline = D1 ('MetaData "ServicePipeline" "Amazonka.Proton.Types.ServicePipeline" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ServicePipeline'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "deploymentStatusMessage") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: S1 ('MetaSel ('Just "spec") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text)))) :*: (S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "createdAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX) :*: S1 ('MetaSel ('Just "deploymentStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 DeploymentStatus)))) :*: ((S1 ('MetaSel ('Just "lastDeploymentAttemptedAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX) :*: S1 ('MetaSel ('Just "lastDeploymentSucceededAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX)) :*: (S1 ('MetaSel ('Just "templateMajorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "templateMinorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "templateName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))))

newServicePipeline Source #

Create a value of ServicePipeline 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:deploymentStatusMessage:ServicePipeline', servicePipeline_deploymentStatusMessage - A service pipeline deployment status message.

$sel:spec:ServicePipeline', servicePipeline_spec - The service spec that was used to create the service pipeline.

$sel:arn:ServicePipeline', servicePipeline_arn - The Amazon Resource Name (ARN) of the service pipeline.

$sel:createdAt:ServicePipeline', servicePipeline_createdAt - The time when the service pipeline was created.

$sel:deploymentStatus:ServicePipeline', servicePipeline_deploymentStatus - The deployment status of the service pipeline.

$sel:lastDeploymentAttemptedAt:ServicePipeline', servicePipeline_lastDeploymentAttemptedAt - The time when a deployment of the service pipeline was last attempted.

$sel:lastDeploymentSucceededAt:ServicePipeline', servicePipeline_lastDeploymentSucceededAt - The time when the service pipeline was last deployed successfully.

$sel:templateMajorVersion:ServicePipeline', servicePipeline_templateMajorVersion - The major version of the service template that was used to create the service pipeline.

$sel:templateMinorVersion:ServicePipeline', servicePipeline_templateMinorVersion - The minor version of the service template that was used to create the service pipeline.

$sel:templateName:ServicePipeline', servicePipeline_templateName - The name of the service template that was used to create the service pipeline.

ServiceSummary

data ServiceSummary Source #

Summary data of an Proton service resource.

See: newServiceSummary smart constructor.

Instances

Instances details
FromJSON ServiceSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceSummary

Generic ServiceSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceSummary

Associated Types

type Rep ServiceSummary :: Type -> Type #

Show ServiceSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceSummary

NFData ServiceSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceSummary

Methods

rnf :: ServiceSummary -> () #

Eq ServiceSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceSummary

Hashable ServiceSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceSummary

type Rep ServiceSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceSummary

newServiceSummary Source #

Create a value of ServiceSummary 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:description:ServiceSummary', serviceSummary_description - A description of the service.

$sel:statusMessage:ServiceSummary', serviceSummary_statusMessage - A service status message.

$sel:arn:ServiceSummary', serviceSummary_arn - The Amazon Resource Name (ARN) of the service.

$sel:createdAt:ServiceSummary', serviceSummary_createdAt - The time when the service was created.

$sel:lastModifiedAt:ServiceSummary', serviceSummary_lastModifiedAt - The time when the service was last modified.

$sel:name:ServiceSummary', serviceSummary_name - The name of the service.

$sel:status:ServiceSummary', serviceSummary_status - The status of the service.

$sel:templateName:ServiceSummary', serviceSummary_templateName - The name of the service template.

ServiceTemplate

data ServiceTemplate Source #

Detailed data of an Proton service template resource.

See: newServiceTemplate smart constructor.

Instances

Instances details
FromJSON ServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplate

Generic ServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplate

Associated Types

type Rep ServiceTemplate :: Type -> Type #

Show ServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplate

NFData ServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplate

Methods

rnf :: ServiceTemplate -> () #

Eq ServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplate

Hashable ServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplate

type Rep ServiceTemplate Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplate

newServiceTemplate Source #

Create a value of ServiceTemplate 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:description:ServiceTemplate', serviceTemplate_description - A description of the service template.

$sel:displayName:ServiceTemplate', serviceTemplate_displayName - The service template name as displayed in the developer interface.

$sel:encryptionKey:ServiceTemplate', serviceTemplate_encryptionKey - The customer provided service template encryption key that's used to encrypt data.

$sel:pipelineProvisioning:ServiceTemplate', serviceTemplate_pipelineProvisioning - If pipelineProvisioning is true, a service pipeline is included in the service template. Otherwise, a service pipeline isn't included in the service template.

$sel:recommendedVersion:ServiceTemplate', serviceTemplate_recommendedVersion - The recommended version of the service template.

$sel:arn:ServiceTemplate', serviceTemplate_arn - The Amazon Resource Name (ARN) of the service template.

$sel:createdAt:ServiceTemplate', serviceTemplate_createdAt - The time when the service template was created.

$sel:lastModifiedAt:ServiceTemplate', serviceTemplate_lastModifiedAt - The time when the service template was last modified.

$sel:name:ServiceTemplate', serviceTemplate_name - The name of the service template.

ServiceTemplateSummary

data ServiceTemplateSummary Source #

Summary data of an Proton service template resource.

See: newServiceTemplateSummary smart constructor.

Instances

Instances details
FromJSON ServiceTemplateSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateSummary

Generic ServiceTemplateSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateSummary

Associated Types

type Rep ServiceTemplateSummary :: Type -> Type #

Show ServiceTemplateSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateSummary

NFData ServiceTemplateSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateSummary

Methods

rnf :: ServiceTemplateSummary -> () #

Eq ServiceTemplateSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateSummary

Hashable ServiceTemplateSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateSummary

type Rep ServiceTemplateSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateSummary

type Rep ServiceTemplateSummary = D1 ('MetaData "ServiceTemplateSummary" "Amazonka.Proton.Types.ServiceTemplateSummary" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ServiceTemplateSummary'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: S1 ('MetaSel ('Just "displayName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text)))) :*: (S1 ('MetaSel ('Just "pipelineProvisioning") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Provisioning)) :*: S1 ('MetaSel ('Just "recommendedVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "createdAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX)) :*: (S1 ('MetaSel ('Just "lastModifiedAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))))

newServiceTemplateSummary Source #

Create a value of ServiceTemplateSummary 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:description:ServiceTemplateSummary', serviceTemplateSummary_description - A description of the service template.

$sel:displayName:ServiceTemplateSummary', serviceTemplateSummary_displayName - The service template name as displayed in the developer interface.

$sel:pipelineProvisioning:ServiceTemplateSummary', serviceTemplateSummary_pipelineProvisioning - If pipelineProvisioning is true, a service pipeline is included in the service template, otherwise a service pipeline isn't included in the service template.

$sel:recommendedVersion:ServiceTemplateSummary', serviceTemplateSummary_recommendedVersion - The recommended version of the service template.

$sel:arn:ServiceTemplateSummary', serviceTemplateSummary_arn - The Amazon Resource Name (ARN) of the service template.

$sel:createdAt:ServiceTemplateSummary', serviceTemplateSummary_createdAt - The time when the service template was created.

$sel:lastModifiedAt:ServiceTemplateSummary', serviceTemplateSummary_lastModifiedAt - The time when the service template was last modified.

$sel:name:ServiceTemplateSummary', serviceTemplateSummary_name - The name of the service template.

ServiceTemplateVersion

data ServiceTemplateVersion Source #

Detailed data of an Proton service template version resource.

See: newServiceTemplateVersion smart constructor.

Instances

Instances details
FromJSON ServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateVersion

Generic ServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateVersion

Associated Types

type Rep ServiceTemplateVersion :: Type -> Type #

Show ServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateVersion

NFData ServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateVersion

Methods

rnf :: ServiceTemplateVersion -> () #

Eq ServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateVersion

Hashable ServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateVersion

type Rep ServiceTemplateVersion Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateVersion

type Rep ServiceTemplateVersion = D1 ('MetaData "ServiceTemplateVersion" "Amazonka.Proton.Types.ServiceTemplateVersion" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "ServiceTemplateVersion'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: (S1 ('MetaSel ('Just "recommendedMinorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "schema") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))))) :*: (S1 ('MetaSel ('Just "statusMessage") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: (S1 ('MetaSel ('Just "supportedComponentSources") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [ServiceTemplateSupportedComponentSourceType])) :*: S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))) :*: ((S1 ('MetaSel ('Just "compatibleEnvironmentTemplates") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [CompatibleEnvironmentTemplate]) :*: (S1 ('MetaSel ('Just "createdAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX) :*: S1 ('MetaSel ('Just "lastModifiedAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX))) :*: ((S1 ('MetaSel ('Just "majorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "minorVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 TemplateVersionStatus) :*: S1 ('MetaSel ('Just "templateName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))))

newServiceTemplateVersion Source #

Create a value of ServiceTemplateVersion 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:description:ServiceTemplateVersion', serviceTemplateVersion_description - A description of the version of a service template.

$sel:recommendedMinorVersion:ServiceTemplateVersion', serviceTemplateVersion_recommendedMinorVersion - The recommended minor version of the service template.

$sel:schema:ServiceTemplateVersion', serviceTemplateVersion_schema - The schema of the version of a service template.

$sel:statusMessage:ServiceTemplateVersion', serviceTemplateVersion_statusMessage - A service template version status message.

$sel:supportedComponentSources:ServiceTemplateVersion', serviceTemplateVersion_supportedComponentSources - An array of supported component sources. Components with supported sources can be attached to service instances based on this service template version.

For more information about components, see Proton components in the Proton User Guide.

$sel:arn:ServiceTemplateVersion', serviceTemplateVersion_arn - The Amazon Resource Name (ARN) of the version of a service template.

$sel:compatibleEnvironmentTemplates:ServiceTemplateVersion', serviceTemplateVersion_compatibleEnvironmentTemplates - An array of compatible environment template names for the major version of a service template.

$sel:createdAt:ServiceTemplateVersion', serviceTemplateVersion_createdAt - The time when the version of a service template was created.

$sel:lastModifiedAt:ServiceTemplateVersion', serviceTemplateVersion_lastModifiedAt - The time when the version of a service template was last modified.

ServiceTemplateVersion, serviceTemplateVersion_majorVersion - The latest major version that's associated with the version of a service template.

$sel:minorVersion:ServiceTemplateVersion', serviceTemplateVersion_minorVersion - The minor version of a service template.

$sel:status:ServiceTemplateVersion', serviceTemplateVersion_status - The service template version status.

ServiceTemplateVersion, serviceTemplateVersion_templateName - The name of the version of a service template.

ServiceTemplateVersionSummary

data ServiceTemplateVersionSummary Source #

Summary data of an Proton service template version resource.

See: newServiceTemplateVersionSummary smart constructor.

Instances

Instances details
FromJSON ServiceTemplateVersionSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateVersionSummary

Generic ServiceTemplateVersionSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateVersionSummary

Associated Types

type Rep ServiceTemplateVersionSummary :: Type -> Type #

Show ServiceTemplateVersionSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateVersionSummary

NFData ServiceTemplateVersionSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateVersionSummary

Eq ServiceTemplateVersionSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateVersionSummary

Hashable ServiceTemplateVersionSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateVersionSummary

type Rep ServiceTemplateVersionSummary Source # 
Instance details

Defined in Amazonka.Proton.Types.ServiceTemplateVersionSummary

newServiceTemplateVersionSummary Source #

Create a value of ServiceTemplateVersionSummary 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:description:ServiceTemplateVersionSummary', serviceTemplateVersionSummary_description - A description of the version of a service template.

$sel:recommendedMinorVersion:ServiceTemplateVersionSummary', serviceTemplateVersionSummary_recommendedMinorVersion - The recommended minor version of the service template.

$sel:statusMessage:ServiceTemplateVersionSummary', serviceTemplateVersionSummary_statusMessage - A service template minor version status message.

$sel:arn:ServiceTemplateVersionSummary', serviceTemplateVersionSummary_arn - The Amazon Resource Name (ARN) of the version of a service template.

$sel:createdAt:ServiceTemplateVersionSummary', serviceTemplateVersionSummary_createdAt - The time when the version of a service template was created.

$sel:lastModifiedAt:ServiceTemplateVersionSummary', serviceTemplateVersionSummary_lastModifiedAt - The time when the version of a service template was last modified.

$sel:majorVersion:ServiceTemplateVersionSummary', serviceTemplateVersionSummary_majorVersion - The latest major version that's associated with the version of a service template.

$sel:minorVersion:ServiceTemplateVersionSummary', serviceTemplateVersionSummary_minorVersion - The minor version of a service template.

$sel:status:ServiceTemplateVersionSummary', serviceTemplateVersionSummary_status - The service template minor version status.

$sel:templateName:ServiceTemplateVersionSummary', serviceTemplateVersionSummary_templateName - The name of the service template.

Tag

data Tag Source #

A description of a resource tag.

See: newTag smart constructor.

Constructors

Tag' Text Text 

Instances

Instances details
FromJSON Tag Source # 
Instance details

Defined in Amazonka.Proton.Types.Tag

ToJSON Tag Source # 
Instance details

Defined in Amazonka.Proton.Types.Tag

Generic Tag Source # 
Instance details

Defined in Amazonka.Proton.Types.Tag

Associated Types

type Rep Tag :: Type -> Type #

Methods

from :: Tag -> Rep Tag x #

to :: Rep Tag x -> Tag #

Read Tag Source # 
Instance details

Defined in Amazonka.Proton.Types.Tag

Show Tag Source # 
Instance details

Defined in Amazonka.Proton.Types.Tag

Methods

showsPrec :: Int -> Tag -> ShowS #

show :: Tag -> String #

showList :: [Tag] -> ShowS #

NFData Tag Source # 
Instance details

Defined in Amazonka.Proton.Types.Tag

Methods

rnf :: Tag -> () #

Eq Tag Source # 
Instance details

Defined in Amazonka.Proton.Types.Tag

Methods

(==) :: Tag -> Tag -> Bool #

(/=) :: Tag -> Tag -> Bool #

Hashable Tag Source # 
Instance details

Defined in Amazonka.Proton.Types.Tag

Methods

hashWithSalt :: Int -> Tag -> Int #

hash :: Tag -> Int #

type Rep Tag Source # 
Instance details

Defined in Amazonka.Proton.Types.Tag

type Rep Tag = D1 ('MetaData "Tag" "Amazonka.Proton.Types.Tag" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "Tag'" 'PrefixI 'True) (S1 ('MetaSel ('Just "key") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "value") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newTag Source #

Create a value of Tag 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:key:Tag', tag_key - The key of the resource tag.

$sel:value:Tag', tag_value - The value of the resource tag.

TemplateSyncConfig

data TemplateSyncConfig Source #

The detail data for a template sync configuration.

See: newTemplateSyncConfig smart constructor.

Instances

Instances details
FromJSON TemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateSyncConfig

Generic TemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateSyncConfig

Associated Types

type Rep TemplateSyncConfig :: Type -> Type #

Read TemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateSyncConfig

Show TemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateSyncConfig

NFData TemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateSyncConfig

Methods

rnf :: TemplateSyncConfig -> () #

Eq TemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateSyncConfig

Hashable TemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateSyncConfig

type Rep TemplateSyncConfig Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateSyncConfig

type Rep TemplateSyncConfig = D1 ('MetaData "TemplateSyncConfig" "Amazonka.Proton.Types.TemplateSyncConfig" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "TemplateSyncConfig'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "subdirectory") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "branch") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "repositoryName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))) :*: (S1 ('MetaSel ('Just "repositoryProvider") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 RepositoryProvider) :*: (S1 ('MetaSel ('Just "templateName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "templateType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 TemplateType)))))

TemplateVersionSourceInput

data TemplateVersionSourceInput Source #

Template version source data.

See: newTemplateVersionSourceInput smart constructor.

Instances

Instances details
ToJSON TemplateVersionSourceInput Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateVersionSourceInput

Generic TemplateVersionSourceInput Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateVersionSourceInput

Associated Types

type Rep TemplateVersionSourceInput :: Type -> Type #

Read TemplateVersionSourceInput Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateVersionSourceInput

Show TemplateVersionSourceInput Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateVersionSourceInput

NFData TemplateVersionSourceInput Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateVersionSourceInput

Eq TemplateVersionSourceInput Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateVersionSourceInput

Hashable TemplateVersionSourceInput Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateVersionSourceInput

type Rep TemplateVersionSourceInput Source # 
Instance details

Defined in Amazonka.Proton.Types.TemplateVersionSourceInput

type Rep TemplateVersionSourceInput = D1 ('MetaData "TemplateVersionSourceInput" "Amazonka.Proton.Types.TemplateVersionSourceInput" "amazonka-proton-2.0-LlJ92rKPVfGGXHsLqGeI74" 'False) (C1 ('MetaCons "TemplateVersionSourceInput'" 'PrefixI 'True) (S1 ('MetaSel ('Just "s3") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe S3ObjectSource))))

newTemplateVersionSourceInput :: TemplateVersionSourceInput Source #

Create a value of TemplateVersionSourceInput 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:s3:TemplateVersionSourceInput', templateVersionSourceInput_s3 - An S3 source object that includes the template bundle S3 path and name for a template minor version.