amazonka-migration-hub-refactor-spaces-2.0: Amazon Migration Hub Refactor Spaces 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.MigrationHubReFactorSpaces

Description

Derived from API version 2021-10-26 of the AWS service descriptions, licensed under Apache 2.0.

Amazon Web Services Migration Hub Refactor Spaces

This API reference provides descriptions, syntax, and other details about each of the actions and data types for Amazon Web Services Migration Hub Refactor Spaces (Refactor Spaces). The topic for each action shows the API request parameters and the response. Alternatively, you can use one of the Amazon Web Services SDKs to access an API that is tailored to the programming language or platform that you're using. For more information, see Amazon Web Services SDKs.

To share Refactor Spaces environments with other Amazon Web Services accounts or with Organizations and their OUs, use Resource Access Manager's CreateResourceShare API. See CreateResourceShare in the Amazon Web Services RAM API Reference.

Synopsis

Service Configuration

defaultService :: Service Source #

API version 2021-10-26 of the Amazon Migration Hub Refactor Spaces 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 MigrationHubReFactorSpaces.

AccessDeniedException

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

The user does not have sufficient access to perform this action.

ConflictException

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

Updating or deleting a resource can cause an inconsistent state.

InternalServerException

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

An unexpected error occurred while processing the request.

InvalidResourcePolicyException

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

The resource policy is not valid.

ResourceNotFoundException

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

The request references a resource that does not exist.

ServiceQuotaExceededException

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

The request would cause a service quota to be exceeded.

ThrottlingException

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

Request was denied because the request was throttled.

ValidationException

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

The input does not satisfy the constraints specified by an Amazon Web Service.

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.

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.

CreateApplication

data CreateApplication Source #

See: newCreateApplication smart constructor.

Instances

Instances details
ToJSON CreateApplication Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateApplication

ToHeaders CreateApplication Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateApplication

ToPath CreateApplication Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateApplication

ToQuery CreateApplication Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateApplication

AWSRequest CreateApplication Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateApplication

Associated Types

type AWSResponse CreateApplication #

Generic CreateApplication Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateApplication

Associated Types

type Rep CreateApplication :: Type -> Type #

Show CreateApplication Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateApplication

NFData CreateApplication Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateApplication

Methods

rnf :: CreateApplication -> () #

Eq CreateApplication Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateApplication

Hashable CreateApplication Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateApplication

type AWSResponse CreateApplication Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateApplication

type Rep CreateApplication Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateApplication

type Rep CreateApplication = D1 ('MetaData "CreateApplication" "Amazonka.MigrationHubReFactorSpaces.CreateApplication" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "CreateApplication'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "apiGatewayProxy") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ApiGatewayProxyInput)) :*: (S1 ('MetaSel ('Just "clientToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive (HashMap Text Text)))))) :*: ((S1 ('MetaSel ('Just "environmentIdentifier") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "proxyType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ProxyType) :*: S1 ('MetaSel ('Just "vpcId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))))

newCreateApplication Source #

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

CreateApplication, createApplication_apiGatewayProxy - A wrapper object holding the API Gateway endpoint type and stage name for the proxy.

$sel:clientToken:CreateApplication', createApplication_clientToken - A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

CreateApplication, createApplication_tags - The tags to assign to the application. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair.

$sel:environmentIdentifier:CreateApplication', createApplication_environmentIdentifier - The unique identifier of the environment.

CreateApplication, createApplication_name - The name to use for the application.

CreateApplication, createApplication_proxyType - The proxy type of the proxy created within the application.

CreateApplication, createApplication_vpcId - The ID of the virtual private cloud (VPC).

data CreateApplicationResponse Source #

See: newCreateApplicationResponse smart constructor.

Instances

Instances details
Generic CreateApplicationResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateApplication

Associated Types

type Rep CreateApplicationResponse :: Type -> Type #

Show CreateApplicationResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateApplication

NFData CreateApplicationResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateApplication

Eq CreateApplicationResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateApplication

type Rep CreateApplicationResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateApplication

type Rep CreateApplicationResponse = D1 ('MetaData "CreateApplicationResponse" "Amazonka.MigrationHubReFactorSpaces.CreateApplication" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "CreateApplicationResponse'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "apiGatewayProxy") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ApiGatewayProxyInput)) :*: (S1 ('MetaSel ('Just "applicationId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "createdByAccountId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "createdTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX))) :*: (S1 ('MetaSel ('Just "environmentId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "lastUpdatedTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX))))) :*: ((S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "ownerAccountId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "proxyType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ProxyType)))) :*: ((S1 ('MetaSel ('Just "state") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ApplicationState)) :*: S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive (HashMap Text Text))))) :*: (S1 ('MetaSel ('Just "vpcId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))))

newCreateApplicationResponse Source #

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

CreateApplication, createApplicationResponse_apiGatewayProxy - A wrapper object holding the API Gateway endpoint type and stage name for the proxy.

CreateApplicationResponse, createApplicationResponse_applicationId - The unique identifier of the application.

CreateApplicationResponse, createApplicationResponse_arn - The Amazon Resource Name (ARN) of the application. The format for this ARN is arn:aws:refactor-spaces:region:account-id:resource-type/resource-id . For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference.

CreateApplicationResponse, createApplicationResponse_createdByAccountId - The Amazon Web Services account ID of application creator.

CreateApplicationResponse, createApplicationResponse_createdTime - A timestamp that indicates when the application is created.

CreateApplicationResponse, createApplicationResponse_environmentId - The ID of the environment in which the application is created.

CreateApplicationResponse, createApplicationResponse_lastUpdatedTime - A timestamp that indicates when the application was last updated.

CreateApplication, createApplicationResponse_name - The name of the application.

CreateApplicationResponse, createApplicationResponse_ownerAccountId - The Amazon Web Services account ID of the application owner (which is always the same as the environment owner account ID).

CreateApplication, createApplicationResponse_proxyType - The proxy type of the proxy created within the application.

CreateApplicationResponse, createApplicationResponse_state - The current state of the application.

CreateApplication, createApplicationResponse_tags - The tags assigned to the application. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair.

CreateApplication, createApplicationResponse_vpcId - The ID of the Amazon VPC.

$sel:httpStatus:CreateApplicationResponse', createApplicationResponse_httpStatus - The response's http status code.

CreateEnvironment

data CreateEnvironment Source #

See: newCreateEnvironment smart constructor.

Instances

Instances details
ToJSON CreateEnvironment Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateEnvironment

ToHeaders CreateEnvironment Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateEnvironment

ToPath CreateEnvironment Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateEnvironment

ToQuery CreateEnvironment Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateEnvironment

AWSRequest CreateEnvironment Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateEnvironment

Associated Types

type AWSResponse CreateEnvironment #

Generic CreateEnvironment Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateEnvironment

Associated Types

type Rep CreateEnvironment :: Type -> Type #

Show CreateEnvironment Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateEnvironment

NFData CreateEnvironment Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateEnvironment

Methods

rnf :: CreateEnvironment -> () #

Eq CreateEnvironment Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateEnvironment

Hashable CreateEnvironment Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateEnvironment

type AWSResponse CreateEnvironment Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateEnvironment

type Rep CreateEnvironment Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateEnvironment

type Rep CreateEnvironment = D1 ('MetaData "CreateEnvironment" "Amazonka.MigrationHubReFactorSpaces.CreateEnvironment" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "CreateEnvironment'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "clientToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive (HashMap Text Text)))) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "networkFabricType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 NetworkFabricType)))))

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:

$sel:clientToken:CreateEnvironment', createEnvironment_clientToken - A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

CreateEnvironment, createEnvironment_description - The description of the environment.

CreateEnvironment, createEnvironment_tags - The tags to assign to the environment. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair.

CreateEnvironment, createEnvironment_name - The name of the environment.

CreateEnvironment, createEnvironment_networkFabricType - The network fabric type of the environment.

data CreateEnvironmentResponse Source #

See: newCreateEnvironmentResponse smart constructor.

Instances

Instances details
Generic CreateEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateEnvironment

Associated Types

type Rep CreateEnvironmentResponse :: Type -> Type #

Show CreateEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateEnvironment

NFData CreateEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateEnvironment

Eq CreateEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateEnvironment

type Rep CreateEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateEnvironment

type Rep CreateEnvironmentResponse = D1 ('MetaData "CreateEnvironmentResponse" "Amazonka.MigrationHubReFactorSpaces.CreateEnvironment" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "CreateEnvironmentResponse'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "createdTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX))) :*: (S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "environmentId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "lastUpdatedTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX))))) :*: ((S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "networkFabricType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe NetworkFabricType)) :*: S1 ('MetaSel ('Just "ownerAccountId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: (S1 ('MetaSel ('Just "state") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe EnvironmentState)) :*: (S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive (HashMap Text Text)))) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))))

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:

CreateEnvironmentResponse, createEnvironmentResponse_arn - The Amazon Resource Name (ARN) of the environment.

CreateEnvironmentResponse, createEnvironmentResponse_createdTime - A timestamp that indicates when the environment is created.

CreateEnvironment, createEnvironmentResponse_description - A description of the environment.

CreateEnvironmentResponse, createEnvironmentResponse_environmentId - The unique identifier of the environment.

CreateEnvironmentResponse, createEnvironmentResponse_lastUpdatedTime - A timestamp that indicates when the environment was last updated.

CreateEnvironment, createEnvironmentResponse_name - The name of the environment.

CreateEnvironment, createEnvironmentResponse_networkFabricType - The network fabric type of the environment.

CreateEnvironmentResponse, createEnvironmentResponse_ownerAccountId - The Amazon Web Services account ID of environment owner.

CreateEnvironmentResponse, createEnvironmentResponse_state - The current state of the environment.

CreateEnvironment, createEnvironmentResponse_tags - The tags assigned to the created environment. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair..

$sel:httpStatus:CreateEnvironmentResponse', createEnvironmentResponse_httpStatus - The response's http status code.

CreateRoute

data CreateRoute Source #

See: newCreateRoute smart constructor.

Instances

Instances details
ToJSON CreateRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateRoute

ToHeaders CreateRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateRoute

Methods

toHeaders :: CreateRoute -> [Header] #

ToPath CreateRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateRoute

ToQuery CreateRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateRoute

AWSRequest CreateRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateRoute

Associated Types

type AWSResponse CreateRoute #

Generic CreateRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateRoute

Associated Types

type Rep CreateRoute :: Type -> Type #

Show CreateRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateRoute

NFData CreateRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateRoute

Methods

rnf :: CreateRoute -> () #

Eq CreateRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateRoute

Hashable CreateRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateRoute

type AWSResponse CreateRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateRoute

type Rep CreateRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateRoute

type Rep CreateRoute = D1 ('MetaData "CreateRoute" "Amazonka.MigrationHubReFactorSpaces.CreateRoute" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "CreateRoute'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "clientToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "defaultRoute") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DefaultRouteInput))) :*: (S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive (HashMap Text Text)))) :*: S1 ('MetaSel ('Just "uriPathRoute") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe UriPathRouteInput)))) :*: ((S1 ('MetaSel ('Just "applicationIdentifier") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "environmentIdentifier") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "routeType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 RouteType) :*: S1 ('MetaSel ('Just "serviceIdentifier") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))))

newCreateRoute Source #

Create a value of CreateRoute 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:CreateRoute', createRoute_clientToken - A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

$sel:defaultRoute:CreateRoute', createRoute_defaultRoute - Configuration for the default route type.

CreateRoute, createRoute_tags - The tags to assign to the route. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair..

CreateRoute, createRoute_uriPathRoute - The configuration for the URI path route type.

$sel:applicationIdentifier:CreateRoute', createRoute_applicationIdentifier - The ID of the application within which the route is being created.

$sel:environmentIdentifier:CreateRoute', createRoute_environmentIdentifier - The ID of the environment in which the route is created.

CreateRoute, createRoute_routeType - The route type of the route. DEFAULT indicates that all traffic that does not match another route is forwarded to the default route. Applications must have a default route before any other routes can be created. URI_PATH indicates a route that is based on a URI path.

$sel:serviceIdentifier:CreateRoute', createRoute_serviceIdentifier - The ID of the service in which the route is created. Traffic that matches this route is forwarded to this service.

data CreateRouteResponse Source #

See: newCreateRouteResponse smart constructor.

Instances

Instances details
Generic CreateRouteResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateRoute

Associated Types

type Rep CreateRouteResponse :: Type -> Type #

Show CreateRouteResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateRoute

NFData CreateRouteResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateRoute

Methods

rnf :: CreateRouteResponse -> () #

Eq CreateRouteResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateRoute

type Rep CreateRouteResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateRoute

type Rep CreateRouteResponse = D1 ('MetaData "CreateRouteResponse" "Amazonka.MigrationHubReFactorSpaces.CreateRoute" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "CreateRouteResponse'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "applicationId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "createdByAccountId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: (S1 ('MetaSel ('Just "createdTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: (S1 ('MetaSel ('Just "lastUpdatedTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "ownerAccountId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))) :*: ((S1 ('MetaSel ('Just "routeId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "routeType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe RouteType)) :*: S1 ('MetaSel ('Just "serviceId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "state") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe RouteState)) :*: S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive (HashMap Text Text))))) :*: (S1 ('MetaSel ('Just "uriPathRoute") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe UriPathRouteInput)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))))

newCreateRouteResponse Source #

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

CreateRouteResponse, createRouteResponse_applicationId - The ID of the application in which the route is created.

CreateRouteResponse, createRouteResponse_arn - The Amazon Resource Name (ARN) of the route. The format for this ARN is arn:aws:refactor-spaces:region:account-id:resource-type/resource-id . For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference.

CreateRouteResponse, createRouteResponse_createdByAccountId - The Amazon Web Services account ID of the route creator.

CreateRouteResponse, createRouteResponse_createdTime - A timestamp that indicates when the route is created.

CreateRouteResponse, createRouteResponse_lastUpdatedTime - A timestamp that indicates when the route was last updated.

CreateRouteResponse, createRouteResponse_ownerAccountId - The Amazon Web Services account ID of the route owner.

CreateRouteResponse, createRouteResponse_routeId - The unique identifier of the route.

CreateRoute, createRouteResponse_routeType - The route type of the route.

CreateRouteResponse, createRouteResponse_serviceId - The ID of service in which the route is created. Traffic that matches this route is forwarded to this service.

CreateRouteResponse, createRouteResponse_state - The current state of the route. Activation state only allows ACTIVE or INACTIVE as user inputs. FAILED is a route state that is system generated.

CreateRoute, createRouteResponse_tags - The tags assigned to the created route. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair.

CreateRoute, createRouteResponse_uriPathRoute - Configuration for the URI path route type.

$sel:httpStatus:CreateRouteResponse', createRouteResponse_httpStatus - The response's http status code.

CreateService

data CreateService Source #

See: newCreateService smart constructor.

Instances

Instances details
ToJSON CreateService Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateService

ToHeaders CreateService Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateService

ToPath CreateService Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateService

ToQuery CreateService Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateService

AWSRequest CreateService Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateService

Associated Types

type AWSResponse CreateService #

Generic CreateService Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateService

Associated Types

type Rep CreateService :: Type -> Type #

Show CreateService Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateService

NFData CreateService Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateService

Methods

rnf :: CreateService -> () #

Eq CreateService Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateService

Hashable CreateService Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateService

type AWSResponse CreateService Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateService

type Rep CreateService Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.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:

$sel:clientToken:CreateService', createService_clientToken - A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

CreateService, createService_description - The description of the service.

CreateService, createService_lambdaEndpoint - The configuration for the Lambda endpoint type.

CreateService, createService_tags - The tags to assign to the service. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair..

CreateService, createService_urlEndpoint - The configuration for the URL endpoint type. When creating a route to a service, Refactor Spaces automatically resolves the address in the UrlEndpointInput object URL when the Domain Name System (DNS) time-to-live (TTL) expires, or every 60 seconds for TTLs less than 60 seconds.

CreateService, createService_vpcId - The ID of the VPC.

$sel:applicationIdentifier:CreateService', createService_applicationIdentifier - The ID of the application which the service is created.

CreateService, createService_endpointType - The type of endpoint to use for the service. The type can be a URL in a VPC or an Lambda function.

$sel:environmentIdentifier:CreateService', createService_environmentIdentifier - The ID of the environment in which the service is created.

CreateService, createService_name - The name of the service.

data CreateServiceResponse Source #

See: newCreateServiceResponse smart constructor.

Instances

Instances details
Generic CreateServiceResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateService

Associated Types

type Rep CreateServiceResponse :: Type -> Type #

Show CreateServiceResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateService

NFData CreateServiceResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateService

Methods

rnf :: CreateServiceResponse -> () #

Eq CreateServiceResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateService

type Rep CreateServiceResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.CreateService

type Rep CreateServiceResponse = D1 ('MetaData "CreateServiceResponse" "Amazonka.MigrationHubReFactorSpaces.CreateService" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "CreateServiceResponse'" 'PrefixI 'True) ((((S1 ('MetaSel ('Just "applicationId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "createdByAccountId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "createdTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)))) :*: ((S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "endpointType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ServiceEndpointType))) :*: (S1 ('MetaSel ('Just "environmentId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "lambdaEndpoint") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe LambdaEndpointInput))))) :*: (((S1 ('MetaSel ('Just "lastUpdatedTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "ownerAccountId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "serviceId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "state") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ServiceState)) :*: S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive (HashMap Text Text))))) :*: (S1 ('MetaSel ('Just "urlEndpoint") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe UrlEndpointInput)) :*: (S1 ('MetaSel ('Just "vpcId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))))))

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:

CreateServiceResponse, createServiceResponse_applicationId - The ID of the application that the created service belongs to.

CreateServiceResponse, createServiceResponse_arn - The Amazon Resource Name (ARN) of the service.

CreateServiceResponse, createServiceResponse_createdByAccountId - The Amazon Web Services account ID of the service creator.

CreateServiceResponse, createServiceResponse_createdTime - A timestamp that indicates when the service is created.

CreateService, createServiceResponse_description - The description of the created service.

CreateService, createServiceResponse_endpointType - The endpoint type of the service.

CreateServiceResponse, createServiceResponse_environmentId - The unique identifier of the environment.

CreateService, createServiceResponse_lambdaEndpoint - The configuration for the Lambda endpoint type.

CreateServiceResponse, createServiceResponse_lastUpdatedTime - A timestamp that indicates when the service was last updated.

CreateService, createServiceResponse_name - The name of the service.

CreateServiceResponse, createServiceResponse_ownerAccountId - The Amazon Web Services account ID of the service owner.

CreateServiceResponse, createServiceResponse_serviceId - The unique identifier of the service.

CreateServiceResponse, createServiceResponse_state - The current state of the service.

CreateService, createServiceResponse_tags - The tags assigned to the created service. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair..

CreateService, createServiceResponse_urlEndpoint - The configuration for the URL endpoint type.

CreateService, createServiceResponse_vpcId - The ID of the VPC.

$sel:httpStatus:CreateServiceResponse', createServiceResponse_httpStatus - The response's http status code.

DeleteApplication

data DeleteApplication Source #

See: newDeleteApplication smart constructor.

Instances

Instances details
ToHeaders DeleteApplication Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteApplication

ToPath DeleteApplication Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteApplication

ToQuery DeleteApplication Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteApplication

AWSRequest DeleteApplication Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteApplication

Associated Types

type AWSResponse DeleteApplication #

Generic DeleteApplication Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteApplication

Associated Types

type Rep DeleteApplication :: Type -> Type #

Read DeleteApplication Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteApplication

Show DeleteApplication Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteApplication

NFData DeleteApplication Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteApplication

Methods

rnf :: DeleteApplication -> () #

Eq DeleteApplication Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteApplication

Hashable DeleteApplication Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteApplication

type AWSResponse DeleteApplication Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteApplication

type Rep DeleteApplication Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteApplication

type Rep DeleteApplication = D1 ('MetaData "DeleteApplication" "Amazonka.MigrationHubReFactorSpaces.DeleteApplication" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "DeleteApplication'" 'PrefixI 'True) (S1 ('MetaSel ('Just "applicationIdentifier") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "environmentIdentifier") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newDeleteApplication Source #

Create a value of DeleteApplication 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:applicationIdentifier:DeleteApplication', deleteApplication_applicationIdentifier - The ID of the application.

$sel:environmentIdentifier:DeleteApplication', deleteApplication_environmentIdentifier - The ID of the environment.

data DeleteApplicationResponse Source #

See: newDeleteApplicationResponse smart constructor.

Instances

Instances details
Generic DeleteApplicationResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteApplication

Associated Types

type Rep DeleteApplicationResponse :: Type -> Type #

Read DeleteApplicationResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteApplication

Show DeleteApplicationResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteApplication

NFData DeleteApplicationResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteApplication

Eq DeleteApplicationResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteApplication

type Rep DeleteApplicationResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteApplication

type Rep DeleteApplicationResponse = D1 ('MetaData "DeleteApplicationResponse" "Amazonka.MigrationHubReFactorSpaces.DeleteApplication" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "DeleteApplicationResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "applicationId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "environmentId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "lastUpdatedTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "state") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ApplicationState)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))))

newDeleteApplicationResponse Source #

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

DeleteApplicationResponse, deleteApplicationResponse_applicationId - The ID of the application.

DeleteApplicationResponse, deleteApplicationResponse_arn - The Amazon Resource Name (ARN) of the application.

DeleteApplicationResponse, deleteApplicationResponse_environmentId - The unique identifier of the application’s environment.

DeleteApplicationResponse, deleteApplicationResponse_lastUpdatedTime - A timestamp that indicates when the environment was last updated.

DeleteApplicationResponse, deleteApplicationResponse_name - The name of the application.

DeleteApplicationResponse, deleteApplicationResponse_state - The current state of the application.

$sel:httpStatus:DeleteApplicationResponse', deleteApplicationResponse_httpStatus - The response's http status code.

DeleteEnvironment

data DeleteEnvironment Source #

See: newDeleteEnvironment smart constructor.

Constructors

DeleteEnvironment' Text 

Instances

Instances details
ToHeaders DeleteEnvironment Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteEnvironment

ToPath DeleteEnvironment Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteEnvironment

ToQuery DeleteEnvironment Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteEnvironment

AWSRequest DeleteEnvironment Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteEnvironment

Associated Types

type AWSResponse DeleteEnvironment #

Generic DeleteEnvironment Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteEnvironment

Associated Types

type Rep DeleteEnvironment :: Type -> Type #

Read DeleteEnvironment Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteEnvironment

Show DeleteEnvironment Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteEnvironment

NFData DeleteEnvironment Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteEnvironment

Methods

rnf :: DeleteEnvironment -> () #

Eq DeleteEnvironment Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteEnvironment

Hashable DeleteEnvironment Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteEnvironment

type AWSResponse DeleteEnvironment Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteEnvironment

type Rep DeleteEnvironment Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteEnvironment

type Rep DeleteEnvironment = D1 ('MetaData "DeleteEnvironment" "Amazonka.MigrationHubReFactorSpaces.DeleteEnvironment" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "DeleteEnvironment'" 'PrefixI 'True) (S1 ('MetaSel ('Just "environmentIdentifier") '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:

$sel:environmentIdentifier:DeleteEnvironment', deleteEnvironment_environmentIdentifier - The ID of the environment.

data DeleteEnvironmentResponse Source #

See: newDeleteEnvironmentResponse smart constructor.

Instances

Instances details
Generic DeleteEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteEnvironment

Associated Types

type Rep DeleteEnvironmentResponse :: Type -> Type #

Read DeleteEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteEnvironment

Show DeleteEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteEnvironment

NFData DeleteEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteEnvironment

Eq DeleteEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteEnvironment

type Rep DeleteEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteEnvironment

type Rep DeleteEnvironmentResponse = D1 ('MetaData "DeleteEnvironmentResponse" "Amazonka.MigrationHubReFactorSpaces.DeleteEnvironment" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "DeleteEnvironmentResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "environmentId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "lastUpdatedTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)))) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "state") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe EnvironmentState)) :*: 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:

DeleteEnvironmentResponse, deleteEnvironmentResponse_arn - The Amazon Resource Name (ARN) of the environment.

DeleteEnvironmentResponse, deleteEnvironmentResponse_environmentId - The unique identifier of the environment.

DeleteEnvironmentResponse, deleteEnvironmentResponse_lastUpdatedTime - A timestamp that indicates when the environment was last updated.

DeleteEnvironmentResponse, deleteEnvironmentResponse_name - The name of the environment.

DeleteEnvironmentResponse, deleteEnvironmentResponse_state - The current state of the environment.

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

DeleteResourcePolicy

data DeleteResourcePolicy Source #

See: newDeleteResourcePolicy smart constructor.

Instances

Instances details
ToHeaders DeleteResourcePolicy Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteResourcePolicy

ToPath DeleteResourcePolicy Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteResourcePolicy

ToQuery DeleteResourcePolicy Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteResourcePolicy

AWSRequest DeleteResourcePolicy Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteResourcePolicy

Associated Types

type AWSResponse DeleteResourcePolicy #

Generic DeleteResourcePolicy Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteResourcePolicy

Associated Types

type Rep DeleteResourcePolicy :: Type -> Type #

Read DeleteResourcePolicy Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteResourcePolicy

Show DeleteResourcePolicy Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteResourcePolicy

NFData DeleteResourcePolicy Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteResourcePolicy

Methods

rnf :: DeleteResourcePolicy -> () #

Eq DeleteResourcePolicy Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteResourcePolicy

Hashable DeleteResourcePolicy Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteResourcePolicy

type AWSResponse DeleteResourcePolicy Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteResourcePolicy

type Rep DeleteResourcePolicy Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteResourcePolicy

type Rep DeleteResourcePolicy = D1 ('MetaData "DeleteResourcePolicy" "Amazonka.MigrationHubReFactorSpaces.DeleteResourcePolicy" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "DeleteResourcePolicy'" 'PrefixI 'True) (S1 ('MetaSel ('Just "identifier") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newDeleteResourcePolicy Source #

Create a value of DeleteResourcePolicy 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:DeleteResourcePolicy', deleteResourcePolicy_identifier - Amazon Resource Name (ARN) of the resource associated with the policy.

data DeleteResourcePolicyResponse Source #

See: newDeleteResourcePolicyResponse smart constructor.

Instances

Instances details
Generic DeleteResourcePolicyResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteResourcePolicy

Associated Types

type Rep DeleteResourcePolicyResponse :: Type -> Type #

Read DeleteResourcePolicyResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteResourcePolicy

Show DeleteResourcePolicyResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteResourcePolicy

NFData DeleteResourcePolicyResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteResourcePolicy

Eq DeleteResourcePolicyResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteResourcePolicy

type Rep DeleteResourcePolicyResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteResourcePolicy

type Rep DeleteResourcePolicyResponse = D1 ('MetaData "DeleteResourcePolicyResponse" "Amazonka.MigrationHubReFactorSpaces.DeleteResourcePolicy" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "DeleteResourcePolicyResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDeleteResourcePolicyResponse Source #

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

DeleteRoute

data DeleteRoute Source #

See: newDeleteRoute smart constructor.

Constructors

DeleteRoute' Text Text Text 

Instances

Instances details
ToHeaders DeleteRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteRoute

Methods

toHeaders :: DeleteRoute -> [Header] #

ToPath DeleteRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteRoute

ToQuery DeleteRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteRoute

AWSRequest DeleteRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteRoute

Associated Types

type AWSResponse DeleteRoute #

Generic DeleteRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteRoute

Associated Types

type Rep DeleteRoute :: Type -> Type #

Read DeleteRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteRoute

Show DeleteRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteRoute

NFData DeleteRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteRoute

Methods

rnf :: DeleteRoute -> () #

Eq DeleteRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteRoute

Hashable DeleteRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteRoute

type AWSResponse DeleteRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteRoute

type Rep DeleteRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteRoute

type Rep DeleteRoute = D1 ('MetaData "DeleteRoute" "Amazonka.MigrationHubReFactorSpaces.DeleteRoute" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "DeleteRoute'" 'PrefixI 'True) (S1 ('MetaSel ('Just "applicationIdentifier") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "environmentIdentifier") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "routeIdentifier") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newDeleteRoute Source #

Create a value of DeleteRoute 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:applicationIdentifier:DeleteRoute', deleteRoute_applicationIdentifier - The ID of the application to delete the route from.

$sel:environmentIdentifier:DeleteRoute', deleteRoute_environmentIdentifier - The ID of the environment to delete the route from.

$sel:routeIdentifier:DeleteRoute', deleteRoute_routeIdentifier - The ID of the route to delete.

data DeleteRouteResponse Source #

See: newDeleteRouteResponse smart constructor.

Instances

Instances details
Generic DeleteRouteResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteRoute

Associated Types

type Rep DeleteRouteResponse :: Type -> Type #

Read DeleteRouteResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteRoute

Show DeleteRouteResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteRoute

NFData DeleteRouteResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteRoute

Methods

rnf :: DeleteRouteResponse -> () #

Eq DeleteRouteResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteRoute

type Rep DeleteRouteResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteRoute

type Rep DeleteRouteResponse = D1 ('MetaData "DeleteRouteResponse" "Amazonka.MigrationHubReFactorSpaces.DeleteRoute" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "DeleteRouteResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "applicationId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "lastUpdatedTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)))) :*: ((S1 ('MetaSel ('Just "routeId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "serviceId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "state") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe RouteState)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))))

newDeleteRouteResponse Source #

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

DeleteRouteResponse, deleteRouteResponse_applicationId - The ID of the application that the route belongs to.

DeleteRouteResponse, deleteRouteResponse_arn - The Amazon Resource Name (ARN) of the route.

DeleteRouteResponse, deleteRouteResponse_lastUpdatedTime - A timestamp that indicates when the route was last updated.

DeleteRouteResponse, deleteRouteResponse_routeId - The ID of the route to delete.

DeleteRouteResponse, deleteRouteResponse_serviceId - The ID of the service that the route belongs to.

DeleteRouteResponse, deleteRouteResponse_state - The current state of the route.

$sel:httpStatus:DeleteRouteResponse', deleteRouteResponse_httpStatus - The response's http status code.

DeleteService

data DeleteService Source #

See: newDeleteService smart constructor.

Instances

Instances details
ToHeaders DeleteService Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteService

ToPath DeleteService Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteService

ToQuery DeleteService Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteService

AWSRequest DeleteService Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteService

Associated Types

type AWSResponse DeleteService #

Generic DeleteService Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteService

Associated Types

type Rep DeleteService :: Type -> Type #

Read DeleteService Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteService

Show DeleteService Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteService

NFData DeleteService Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteService

Methods

rnf :: DeleteService -> () #

Eq DeleteService Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteService

Hashable DeleteService Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteService

type AWSResponse DeleteService Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteService

type Rep DeleteService Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteService

type Rep DeleteService = D1 ('MetaData "DeleteService" "Amazonka.MigrationHubReFactorSpaces.DeleteService" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "DeleteService'" 'PrefixI 'True) (S1 ('MetaSel ('Just "applicationIdentifier") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "environmentIdentifier") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "serviceIdentifier") '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:

$sel:applicationIdentifier:DeleteService', deleteService_applicationIdentifier - Deletes a Refactor Spaces service.

The RefactorSpacesSecurityGroup security group must be removed from all Amazon Web Services resources in the virtual private cloud (VPC) prior to deleting a service with a URL endpoint in a VPC.

$sel:environmentIdentifier:DeleteService', deleteService_environmentIdentifier - The ID of the environment that the service is in.

$sel:serviceIdentifier:DeleteService', deleteService_serviceIdentifier - The ID of the service to delete.

data DeleteServiceResponse Source #

See: newDeleteServiceResponse smart constructor.

Instances

Instances details
Generic DeleteServiceResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteService

Associated Types

type Rep DeleteServiceResponse :: Type -> Type #

Read DeleteServiceResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteService

Show DeleteServiceResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteService

NFData DeleteServiceResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteService

Methods

rnf :: DeleteServiceResponse -> () #

Eq DeleteServiceResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteService

type Rep DeleteServiceResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.DeleteService

type Rep DeleteServiceResponse = D1 ('MetaData "DeleteServiceResponse" "Amazonka.MigrationHubReFactorSpaces.DeleteService" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "DeleteServiceResponse'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "applicationId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "environmentId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "lastUpdatedTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)))) :*: ((S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "serviceId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "state") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ServiceState)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))))

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:

DeleteServiceResponse, deleteServiceResponse_applicationId - The ID of the application that the service is in.

DeleteServiceResponse, deleteServiceResponse_arn - The Amazon Resource Name (ARN) of the service.

DeleteServiceResponse, deleteServiceResponse_environmentId - The unique identifier of the environment.

DeleteServiceResponse, deleteServiceResponse_lastUpdatedTime - A timestamp that indicates when the service was last updated.

DeleteServiceResponse, deleteServiceResponse_name - The name of the service.

DeleteServiceResponse, deleteServiceResponse_serviceId - The unique identifier of the service.

DeleteServiceResponse, deleteServiceResponse_state - The current state of the service.

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

GetApplication

data GetApplication Source #

See: newGetApplication smart constructor.

Constructors

GetApplication' Text Text 

Instances

Instances details
ToHeaders GetApplication Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetApplication

ToPath GetApplication Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetApplication

ToQuery GetApplication Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetApplication

AWSRequest GetApplication Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetApplication

Associated Types

type AWSResponse GetApplication #

Generic GetApplication Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetApplication

Associated Types

type Rep GetApplication :: Type -> Type #

Read GetApplication Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetApplication

Show GetApplication Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetApplication

NFData GetApplication Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetApplication

Methods

rnf :: GetApplication -> () #

Eq GetApplication Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetApplication

Hashable GetApplication Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetApplication

type AWSResponse GetApplication Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetApplication

type Rep GetApplication Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetApplication

type Rep GetApplication = D1 ('MetaData "GetApplication" "Amazonka.MigrationHubReFactorSpaces.GetApplication" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "GetApplication'" 'PrefixI 'True) (S1 ('MetaSel ('Just "applicationIdentifier") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "environmentIdentifier") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newGetApplication Source #

Create a value of GetApplication 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:applicationIdentifier:GetApplication', getApplication_applicationIdentifier - The ID of the application.

$sel:environmentIdentifier:GetApplication', getApplication_environmentIdentifier - The ID of the environment.

data GetApplicationResponse Source #

See: newGetApplicationResponse smart constructor.

Instances

Instances details
Generic GetApplicationResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetApplication

Associated Types

type Rep GetApplicationResponse :: Type -> Type #

Show GetApplicationResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetApplication

NFData GetApplicationResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetApplication

Methods

rnf :: GetApplicationResponse -> () #

Eq GetApplicationResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetApplication

type Rep GetApplicationResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetApplication

type Rep GetApplicationResponse = D1 ('MetaData "GetApplicationResponse" "Amazonka.MigrationHubReFactorSpaces.GetApplication" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "GetApplicationResponse'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "apiGatewayProxy") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ApiGatewayProxyConfig)) :*: (S1 ('MetaSel ('Just "applicationId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "createdByAccountId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "createdTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX))) :*: (S1 ('MetaSel ('Just "environmentId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "error") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ErrorResponse))))) :*: (((S1 ('MetaSel ('Just "lastUpdatedTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "ownerAccountId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "proxyType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ProxyType)))) :*: ((S1 ('MetaSel ('Just "state") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ApplicationState)) :*: S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive (HashMap Text Text))))) :*: (S1 ('MetaSel ('Just "vpcId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))))

newGetApplicationResponse Source #

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

GetApplicationResponse, getApplicationResponse_apiGatewayProxy - The endpoint URL of the API Gateway proxy.

GetApplicationResponse, getApplicationResponse_applicationId - The unique identifier of the application.

GetApplicationResponse, getApplicationResponse_arn - The Amazon Resource Name (ARN) of the application.

GetApplicationResponse, getApplicationResponse_createdByAccountId - The Amazon Web Services account ID of the application creator.

GetApplicationResponse, getApplicationResponse_createdTime - A timestamp that indicates when the application is created.

GetApplicationResponse, getApplicationResponse_environmentId - The unique identifier of the environment.

GetApplicationResponse, getApplicationResponse_error - Any error associated with the application resource.

GetApplicationResponse, getApplicationResponse_lastUpdatedTime - A timestamp that indicates when the application was last updated.

GetApplicationResponse, getApplicationResponse_name - The name of the application.

GetApplicationResponse, getApplicationResponse_ownerAccountId - The Amazon Web Services account ID of the application owner (which is always the same as the environment owner account ID).

GetApplicationResponse, getApplicationResponse_proxyType - The proxy type of the proxy created within the application.

GetApplicationResponse, getApplicationResponse_state - The current state of the application.

GetApplicationResponse, getApplicationResponse_tags - The tags assigned to the application. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair.

GetApplicationResponse, getApplicationResponse_vpcId - The ID of the virtual private cloud (VPC).

$sel:httpStatus:GetApplicationResponse', getApplicationResponse_httpStatus - The response's http status code.

GetEnvironment

data GetEnvironment Source #

See: newGetEnvironment smart constructor.

Constructors

GetEnvironment' Text 

Instances

Instances details
ToHeaders GetEnvironment Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetEnvironment

ToPath GetEnvironment Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetEnvironment

ToQuery GetEnvironment Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetEnvironment

AWSRequest GetEnvironment Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetEnvironment

Associated Types

type AWSResponse GetEnvironment #

Generic GetEnvironment Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetEnvironment

Associated Types

type Rep GetEnvironment :: Type -> Type #

Read GetEnvironment Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetEnvironment

Show GetEnvironment Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetEnvironment

NFData GetEnvironment Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetEnvironment

Methods

rnf :: GetEnvironment -> () #

Eq GetEnvironment Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetEnvironment

Hashable GetEnvironment Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetEnvironment

type AWSResponse GetEnvironment Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetEnvironment

type Rep GetEnvironment Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetEnvironment

type Rep GetEnvironment = D1 ('MetaData "GetEnvironment" "Amazonka.MigrationHubReFactorSpaces.GetEnvironment" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "GetEnvironment'" 'PrefixI 'True) (S1 ('MetaSel ('Just "environmentIdentifier") '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:

$sel:environmentIdentifier:GetEnvironment', getEnvironment_environmentIdentifier - The ID of the environment.

data GetEnvironmentResponse Source #

See: newGetEnvironmentResponse smart constructor.

Instances

Instances details
Generic GetEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetEnvironment

Associated Types

type Rep GetEnvironmentResponse :: Type -> Type #

Show GetEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetEnvironment

NFData GetEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetEnvironment

Methods

rnf :: GetEnvironmentResponse -> () #

Eq GetEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetEnvironment

type Rep GetEnvironmentResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetEnvironment

type Rep GetEnvironmentResponse = D1 ('MetaData "GetEnvironmentResponse" "Amazonka.MigrationHubReFactorSpaces.GetEnvironment" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "GetEnvironmentResponse'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "createdTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: (S1 ('MetaSel ('Just "environmentId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "error") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ErrorResponse)) :*: S1 ('MetaSel ('Just "lastUpdatedTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX))))) :*: ((S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "networkFabricType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe NetworkFabricType)) :*: S1 ('MetaSel ('Just "ownerAccountId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "state") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe EnvironmentState)) :*: S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive (HashMap Text Text))))) :*: (S1 ('MetaSel ('Just "transitGatewayId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))))

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:

GetEnvironmentResponse, getEnvironmentResponse_arn - The Amazon Resource Name (ARN) of the environment.

GetEnvironmentResponse, getEnvironmentResponse_createdTime - A timestamp that indicates when the environment is created.

GetEnvironmentResponse, getEnvironmentResponse_description - The description of the environment.

GetEnvironmentResponse, getEnvironmentResponse_environmentId - The unique identifier of the environment.

GetEnvironmentResponse, getEnvironmentResponse_error - Any error associated with the environment resource.

GetEnvironmentResponse, getEnvironmentResponse_lastUpdatedTime - A timestamp that indicates when the environment was last updated.

GetEnvironmentResponse, getEnvironmentResponse_name - The name of the environment.

GetEnvironmentResponse, getEnvironmentResponse_networkFabricType - The network fabric type of the environment.

GetEnvironmentResponse, getEnvironmentResponse_ownerAccountId - The Amazon Web Services account ID of the environment owner.

GetEnvironmentResponse, getEnvironmentResponse_state - The current state of the environment.

GetEnvironmentResponse, getEnvironmentResponse_tags - The tags to assign to the environment. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair.

GetEnvironmentResponse, getEnvironmentResponse_transitGatewayId - The ID of the transit gateway set up by the environment.

$sel:httpStatus:GetEnvironmentResponse', getEnvironmentResponse_httpStatus - The response's http status code.

GetResourcePolicy

data GetResourcePolicy Source #

See: newGetResourcePolicy smart constructor.

Constructors

GetResourcePolicy' Text 

Instances

Instances details
ToHeaders GetResourcePolicy Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetResourcePolicy

ToPath GetResourcePolicy Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetResourcePolicy

ToQuery GetResourcePolicy Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetResourcePolicy

AWSRequest GetResourcePolicy Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetResourcePolicy

Associated Types

type AWSResponse GetResourcePolicy #

Generic GetResourcePolicy Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetResourcePolicy

Associated Types

type Rep GetResourcePolicy :: Type -> Type #

Read GetResourcePolicy Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetResourcePolicy

Show GetResourcePolicy Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetResourcePolicy

NFData GetResourcePolicy Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetResourcePolicy

Methods

rnf :: GetResourcePolicy -> () #

Eq GetResourcePolicy Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetResourcePolicy

Hashable GetResourcePolicy Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetResourcePolicy

type AWSResponse GetResourcePolicy Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetResourcePolicy

type Rep GetResourcePolicy Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetResourcePolicy

type Rep GetResourcePolicy = D1 ('MetaData "GetResourcePolicy" "Amazonka.MigrationHubReFactorSpaces.GetResourcePolicy" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "GetResourcePolicy'" 'PrefixI 'True) (S1 ('MetaSel ('Just "identifier") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newGetResourcePolicy Source #

Create a value of GetResourcePolicy 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:GetResourcePolicy', getResourcePolicy_identifier - The Amazon Resource Name (ARN) of the resource associated with the policy.

data GetResourcePolicyResponse Source #

See: newGetResourcePolicyResponse smart constructor.

Instances

Instances details
Generic GetResourcePolicyResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetResourcePolicy

Associated Types

type Rep GetResourcePolicyResponse :: Type -> Type #

Read GetResourcePolicyResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetResourcePolicy

Show GetResourcePolicyResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetResourcePolicy

NFData GetResourcePolicyResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetResourcePolicy

Eq GetResourcePolicyResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetResourcePolicy

type Rep GetResourcePolicyResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetResourcePolicy

type Rep GetResourcePolicyResponse = D1 ('MetaData "GetResourcePolicyResponse" "Amazonka.MigrationHubReFactorSpaces.GetResourcePolicy" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "GetResourcePolicyResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "policy") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newGetResourcePolicyResponse Source #

Create a value of GetResourcePolicyResponse 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:policy:GetResourcePolicyResponse', getResourcePolicyResponse_policy - A JSON-formatted string for an Amazon Web Services resource-based policy.

$sel:httpStatus:GetResourcePolicyResponse', getResourcePolicyResponse_httpStatus - The response's http status code.

GetRoute

data GetRoute Source #

See: newGetRoute smart constructor.

Constructors

GetRoute' Text Text Text 

Instances

Instances details
ToHeaders GetRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetRoute

Methods

toHeaders :: GetRoute -> [Header] #

ToPath GetRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetRoute

ToQuery GetRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetRoute

AWSRequest GetRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetRoute

Associated Types

type AWSResponse GetRoute #

Generic GetRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetRoute

Associated Types

type Rep GetRoute :: Type -> Type #

Methods

from :: GetRoute -> Rep GetRoute x #

to :: Rep GetRoute x -> GetRoute #

Read GetRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetRoute

Show GetRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetRoute

NFData GetRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetRoute

Methods

rnf :: GetRoute -> () #

Eq GetRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetRoute

Hashable GetRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetRoute

Methods

hashWithSalt :: Int -> GetRoute -> Int #

hash :: GetRoute -> Int #

type AWSResponse GetRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetRoute

type Rep GetRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetRoute

type Rep GetRoute = D1 ('MetaData "GetRoute" "Amazonka.MigrationHubReFactorSpaces.GetRoute" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "GetRoute'" 'PrefixI 'True) (S1 ('MetaSel ('Just "applicationIdentifier") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "environmentIdentifier") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "routeIdentifier") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newGetRoute Source #

Create a value of GetRoute 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:applicationIdentifier:GetRoute', getRoute_applicationIdentifier - The ID of the application.

$sel:environmentIdentifier:GetRoute', getRoute_environmentIdentifier - The ID of the environment.

$sel:routeIdentifier:GetRoute', getRoute_routeIdentifier - The ID of the route.

data GetRouteResponse Source #

See: newGetRouteResponse smart constructor.

Instances

Instances details
Generic GetRouteResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetRoute

Associated Types

type Rep GetRouteResponse :: Type -> Type #

Show GetRouteResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetRoute

NFData GetRouteResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetRoute

Methods

rnf :: GetRouteResponse -> () #

Eq GetRouteResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetRoute

type Rep GetRouteResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetRoute

type Rep GetRouteResponse = D1 ('MetaData "GetRouteResponse" "Amazonka.MigrationHubReFactorSpaces.GetRoute" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "GetRouteResponse'" 'PrefixI 'True) ((((S1 ('MetaSel ('Just "applicationId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "createdByAccountId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "createdTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)))) :*: ((S1 ('MetaSel ('Just "environmentId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "error") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ErrorResponse))) :*: (S1 ('MetaSel ('Just "includeChildPaths") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: (S1 ('MetaSel ('Just "lastUpdatedTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "methods") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [HttpMethod])))))) :*: (((S1 ('MetaSel ('Just "ownerAccountId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "pathResourceToId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text Text)))) :*: (S1 ('MetaSel ('Just "routeId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "routeType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe RouteType)))) :*: ((S1 ('MetaSel ('Just "serviceId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "sourcePath") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "state") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe RouteState)) :*: (S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive (HashMap Text Text)))) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))))))

newGetRouteResponse Source #

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

GetRouteResponse, getRouteResponse_applicationId - The ID of the application that the route belongs to.

GetRouteResponse, getRouteResponse_arn - The Amazon Resource Name (ARN) of the route.

GetRouteResponse, getRouteResponse_createdByAccountId - The Amazon Web Services account ID of the route creator.

GetRouteResponse, getRouteResponse_createdTime - The timestamp of when the route is created.

GetRouteResponse, getRouteResponse_environmentId - Unique identifier of the environment.

GetRouteResponse, getRouteResponse_error - Any error associated with the route resource.

GetRouteResponse, getRouteResponse_includeChildPaths - Indicates whether to match all subpaths of the given source path. If this value is false, requests must match the source path exactly before they are forwarded to this route's service.

GetRouteResponse, getRouteResponse_lastUpdatedTime - A timestamp that indicates when the route was last updated.

GetRouteResponse, getRouteResponse_methods - A list of HTTP methods to match. An empty list matches all values. If a method is present, only HTTP requests using that method are forwarded to this route’s service.

GetRouteResponse, getRouteResponse_ownerAccountId - The Amazon Web Services account ID of the route owner.

GetRouteResponse, getRouteResponse_pathResourceToId - A mapping of Amazon API Gateway path resources to resource IDs.

GetRouteResponse, getRouteResponse_routeId - The unique identifier of the route.

DEFAULT: All traffic that does not match another route is forwarded to the default route. Applications must have a default route before any other routes can be created.

URI_PATH: A route that is based on a URI path.

GetRouteResponse, getRouteResponse_routeType - The type of route.

GetRouteResponse, getRouteResponse_serviceId - The unique identifier of the service.

GetRouteResponse, getRouteResponse_sourcePath - The path to use to match traffic. Paths must start with / and are relative to the base of the application.

GetRouteResponse, getRouteResponse_state - The current state of the route.

GetRouteResponse, getRouteResponse_tags - The tags assigned to the route. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair.

$sel:httpStatus:GetRouteResponse', getRouteResponse_httpStatus - The response's http status code.

GetService

data GetService Source #

See: newGetService smart constructor.

Constructors

GetService' Text Text Text 

Instances

Instances details
ToHeaders GetService Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetService

Methods

toHeaders :: GetService -> [Header] #

ToPath GetService Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetService

ToQuery GetService Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetService

AWSRequest GetService Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetService

Associated Types

type AWSResponse GetService #

Generic GetService Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetService

Associated Types

type Rep GetService :: Type -> Type #

Read GetService Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetService

Show GetService Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetService

NFData GetService Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetService

Methods

rnf :: GetService -> () #

Eq GetService Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetService

Hashable GetService Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetService

type AWSResponse GetService Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetService

type Rep GetService Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetService

type Rep GetService = D1 ('MetaData "GetService" "Amazonka.MigrationHubReFactorSpaces.GetService" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "GetService'" 'PrefixI 'True) (S1 ('MetaSel ('Just "applicationIdentifier") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "environmentIdentifier") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "serviceIdentifier") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newGetService Source #

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:

$sel:applicationIdentifier:GetService', getService_applicationIdentifier - The ID of the application.

$sel:environmentIdentifier:GetService', getService_environmentIdentifier - The ID of the environment.

$sel:serviceIdentifier:GetService', getService_serviceIdentifier - The ID of the service.

data GetServiceResponse Source #

See: newGetServiceResponse smart constructor.

Instances

Instances details
Generic GetServiceResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetService

Associated Types

type Rep GetServiceResponse :: Type -> Type #

Show GetServiceResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetService

NFData GetServiceResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetService

Methods

rnf :: GetServiceResponse -> () #

Eq GetServiceResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetService

type Rep GetServiceResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.GetService

type Rep GetServiceResponse = D1 ('MetaData "GetServiceResponse" "Amazonka.MigrationHubReFactorSpaces.GetService" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "GetServiceResponse'" 'PrefixI 'True) ((((S1 ('MetaSel ('Just "applicationId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "createdByAccountId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "createdTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)))) :*: ((S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "endpointType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ServiceEndpointType))) :*: (S1 ('MetaSel ('Just "environmentId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "error") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ErrorResponse)) :*: S1 ('MetaSel ('Just "lambdaEndpoint") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe LambdaEndpointConfig)))))) :*: (((S1 ('MetaSel ('Just "lastUpdatedTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "ownerAccountId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "serviceId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "state") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ServiceState)) :*: S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive (HashMap Text Text))))) :*: (S1 ('MetaSel ('Just "urlEndpoint") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe UrlEndpointConfig)) :*: (S1 ('MetaSel ('Just "vpcId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: 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:

GetServiceResponse, getServiceResponse_applicationId - The ID of the application.

GetServiceResponse, getServiceResponse_arn - The Amazon Resource Name (ARN) of the service.

GetServiceResponse, getServiceResponse_createdByAccountId - The Amazon Web Services account ID of the service creator.

GetServiceResponse, getServiceResponse_createdTime - The timestamp of when the service is created.

GetServiceResponse, getServiceResponse_description - The description of the service.

GetServiceResponse, getServiceResponse_endpointType - The endpoint type of the service.

GetServiceResponse, getServiceResponse_environmentId - The unique identifier of the environment.

GetServiceResponse, getServiceResponse_error - Any error associated with the service resource.

GetServiceResponse, getServiceResponse_lambdaEndpoint - The configuration for the Lambda endpoint type.

The Arn is the Amazon Resource Name (ARN) of the Lambda function associated with this service.

GetServiceResponse, getServiceResponse_lastUpdatedTime - A timestamp that indicates when the service was last updated.

GetServiceResponse, getServiceResponse_name - The name of the service.

GetServiceResponse, getServiceResponse_ownerAccountId - The Amazon Web Services account ID of the service owner.

GetServiceResponse, getServiceResponse_serviceId - The unique identifier of the service.

GetServiceResponse, getServiceResponse_state - The current state of the service.

GetServiceResponse, getServiceResponse_tags - The tags assigned to the service. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair.

GetServiceResponse, getServiceResponse_urlEndpoint - The configuration for the URL endpoint type.

The Url isthe URL of the endpoint type.

The HealthUrl is the health check URL of the endpoint type.

GetServiceResponse, getServiceResponse_vpcId - The ID of the virtual private cloud (VPC).

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

ListApplications (Paginated)

data ListApplications Source #

See: newListApplications smart constructor.

Instances

Instances details
ToHeaders ListApplications Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListApplications

ToPath ListApplications Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListApplications

ToQuery ListApplications Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListApplications

AWSPager ListApplications Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListApplications

AWSRequest ListApplications Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListApplications

Associated Types

type AWSResponse ListApplications #

Generic ListApplications Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListApplications

Associated Types

type Rep ListApplications :: Type -> Type #

Read ListApplications Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListApplications

Show ListApplications Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListApplications

NFData ListApplications Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListApplications

Methods

rnf :: ListApplications -> () #

Eq ListApplications Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListApplications

Hashable ListApplications Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListApplications

type AWSResponse ListApplications Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListApplications

type Rep ListApplications Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListApplications

type Rep ListApplications = D1 ('MetaData "ListApplications" "Amazonka.MigrationHubReFactorSpaces.ListApplications" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "ListApplications'" '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 "environmentIdentifier") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newListApplications Source #

Create a value of ListApplications 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:ListApplications', listApplications_maxResults - The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

ListApplications, listApplications_nextToken - The token for the next page of results.

$sel:environmentIdentifier:ListApplications', listApplications_environmentIdentifier - The ID of the environment.

data ListApplicationsResponse Source #

See: newListApplicationsResponse smart constructor.

Instances

Instances details
Generic ListApplicationsResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListApplications

Associated Types

type Rep ListApplicationsResponse :: Type -> Type #

Show ListApplicationsResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListApplications

NFData ListApplicationsResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListApplications

Eq ListApplicationsResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListApplications

type Rep ListApplicationsResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListApplications

type Rep ListApplicationsResponse = D1 ('MetaData "ListApplicationsResponse" "Amazonka.MigrationHubReFactorSpaces.ListApplications" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "ListApplicationsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "applicationSummaryList") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [ApplicationSummary])) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListApplicationsResponse Source #

Create a value of ListApplicationsResponse 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:applicationSummaryList:ListApplicationsResponse', listApplicationsResponse_applicationSummaryList - The list of ApplicationSummary objects.

ListApplications, listApplicationsResponse_nextToken - The token for the next page of results.

$sel:httpStatus:ListApplicationsResponse', listApplicationsResponse_httpStatus - The response's http status code.

ListEnvironmentVpcs (Paginated)

data ListEnvironmentVpcs Source #

See: newListEnvironmentVpcs smart constructor.

Instances

Instances details
ToHeaders ListEnvironmentVpcs Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListEnvironmentVpcs

ToPath ListEnvironmentVpcs Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListEnvironmentVpcs

ToQuery ListEnvironmentVpcs Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListEnvironmentVpcs

AWSPager ListEnvironmentVpcs Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListEnvironmentVpcs

AWSRequest ListEnvironmentVpcs Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListEnvironmentVpcs

Associated Types

type AWSResponse ListEnvironmentVpcs #

Generic ListEnvironmentVpcs Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListEnvironmentVpcs

Associated Types

type Rep ListEnvironmentVpcs :: Type -> Type #

Read ListEnvironmentVpcs Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListEnvironmentVpcs

Show ListEnvironmentVpcs Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListEnvironmentVpcs

NFData ListEnvironmentVpcs Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListEnvironmentVpcs

Methods

rnf :: ListEnvironmentVpcs -> () #

Eq ListEnvironmentVpcs Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListEnvironmentVpcs

Hashable ListEnvironmentVpcs Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListEnvironmentVpcs

type AWSResponse ListEnvironmentVpcs Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListEnvironmentVpcs

type Rep ListEnvironmentVpcs Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListEnvironmentVpcs

type Rep ListEnvironmentVpcs = D1 ('MetaData "ListEnvironmentVpcs" "Amazonka.MigrationHubReFactorSpaces.ListEnvironmentVpcs" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "ListEnvironmentVpcs'" '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 "environmentIdentifier") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newListEnvironmentVpcs Source #

Create a value of ListEnvironmentVpcs 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:ListEnvironmentVpcs', listEnvironmentVpcs_maxResults - The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

ListEnvironmentVpcs, listEnvironmentVpcs_nextToken - The token for the next page of results.

$sel:environmentIdentifier:ListEnvironmentVpcs', listEnvironmentVpcs_environmentIdentifier - The ID of the environment.

data ListEnvironmentVpcsResponse Source #

See: newListEnvironmentVpcsResponse smart constructor.

Instances

Instances details
Generic ListEnvironmentVpcsResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListEnvironmentVpcs

Associated Types

type Rep ListEnvironmentVpcsResponse :: Type -> Type #

Read ListEnvironmentVpcsResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListEnvironmentVpcs

Show ListEnvironmentVpcsResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListEnvironmentVpcs

NFData ListEnvironmentVpcsResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListEnvironmentVpcs

Eq ListEnvironmentVpcsResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListEnvironmentVpcs

type Rep ListEnvironmentVpcsResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListEnvironmentVpcs

type Rep ListEnvironmentVpcsResponse = D1 ('MetaData "ListEnvironmentVpcsResponse" "Amazonka.MigrationHubReFactorSpaces.ListEnvironmentVpcs" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "ListEnvironmentVpcsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "environmentVpcList") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [EnvironmentVpc])) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListEnvironmentVpcsResponse Source #

Create a value of ListEnvironmentVpcsResponse 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:environmentVpcList:ListEnvironmentVpcsResponse', listEnvironmentVpcsResponse_environmentVpcList - The list of EnvironmentVpc objects.

ListEnvironmentVpcs, listEnvironmentVpcsResponse_nextToken - The token for the next page of results.

$sel:httpStatus:ListEnvironmentVpcsResponse', listEnvironmentVpcsResponse_httpStatus - The response's http status code.

ListEnvironments (Paginated)

data ListEnvironments Source #

See: newListEnvironments smart constructor.

Instances

Instances details
ToHeaders ListEnvironments Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListEnvironments

ToPath ListEnvironments Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListEnvironments

ToQuery ListEnvironments Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListEnvironments

AWSPager ListEnvironments Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListEnvironments

AWSRequest ListEnvironments Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListEnvironments

Associated Types

type AWSResponse ListEnvironments #

Generic ListEnvironments Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListEnvironments

Associated Types

type Rep ListEnvironments :: Type -> Type #

Read ListEnvironments Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListEnvironments

Show ListEnvironments Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListEnvironments

NFData ListEnvironments Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListEnvironments

Methods

rnf :: ListEnvironments -> () #

Eq ListEnvironments Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListEnvironments

Hashable ListEnvironments Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListEnvironments

type AWSResponse ListEnvironments Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListEnvironments

type Rep ListEnvironments Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListEnvironments

type Rep ListEnvironments = D1 ('MetaData "ListEnvironments" "Amazonka.MigrationHubReFactorSpaces.ListEnvironments" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "ListEnvironments'" 'PrefixI 'True) (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:maxResults:ListEnvironments', listEnvironments_maxResults - The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

ListEnvironments, listEnvironments_nextToken - The token for the next page of results.

data ListEnvironmentsResponse Source #

See: newListEnvironmentsResponse smart constructor.

Instances

Instances details
Generic ListEnvironmentsResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListEnvironments

Associated Types

type Rep ListEnvironmentsResponse :: Type -> Type #

Show ListEnvironmentsResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListEnvironments

NFData ListEnvironmentsResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListEnvironments

Eq ListEnvironmentsResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListEnvironments

type Rep ListEnvironmentsResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListEnvironments

type Rep ListEnvironmentsResponse = D1 ('MetaData "ListEnvironmentsResponse" "Amazonka.MigrationHubReFactorSpaces.ListEnvironments" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "ListEnvironmentsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "environmentSummaryList") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [EnvironmentSummary])) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

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:

$sel:environmentSummaryList:ListEnvironmentsResponse', listEnvironmentsResponse_environmentSummaryList - The list of EnvironmentSummary objects.

ListEnvironments, listEnvironmentsResponse_nextToken - The token for the next page of results.

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

ListRoutes (Paginated)

data ListRoutes Source #

See: newListRoutes smart constructor.

Instances

Instances details
ToHeaders ListRoutes Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListRoutes

Methods

toHeaders :: ListRoutes -> [Header] #

ToPath ListRoutes Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListRoutes

ToQuery ListRoutes Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListRoutes

AWSPager ListRoutes Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListRoutes

AWSRequest ListRoutes Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListRoutes

Associated Types

type AWSResponse ListRoutes #

Generic ListRoutes Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListRoutes

Associated Types

type Rep ListRoutes :: Type -> Type #

Read ListRoutes Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListRoutes

Show ListRoutes Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListRoutes

NFData ListRoutes Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListRoutes

Methods

rnf :: ListRoutes -> () #

Eq ListRoutes Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListRoutes

Hashable ListRoutes Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListRoutes

type AWSResponse ListRoutes Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListRoutes

type Rep ListRoutes Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListRoutes

type Rep ListRoutes = D1 ('MetaData "ListRoutes" "Amazonka.MigrationHubReFactorSpaces.ListRoutes" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "ListRoutes'" '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 "applicationIdentifier") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "environmentIdentifier") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newListRoutes Source #

Create a value of ListRoutes 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:ListRoutes', listRoutes_maxResults - The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

ListRoutes, listRoutes_nextToken - The token for the next page of results.

$sel:applicationIdentifier:ListRoutes', listRoutes_applicationIdentifier - The ID of the application.

$sel:environmentIdentifier:ListRoutes', listRoutes_environmentIdentifier - The ID of the environment.

data ListRoutesResponse Source #

See: newListRoutesResponse smart constructor.

Instances

Instances details
Generic ListRoutesResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListRoutes

Associated Types

type Rep ListRoutesResponse :: Type -> Type #

Show ListRoutesResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListRoutes

NFData ListRoutesResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListRoutes

Methods

rnf :: ListRoutesResponse -> () #

Eq ListRoutesResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListRoutes

type Rep ListRoutesResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListRoutes

type Rep ListRoutesResponse = D1 ('MetaData "ListRoutesResponse" "Amazonka.MigrationHubReFactorSpaces.ListRoutes" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "ListRoutesResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "routeSummaryList") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [RouteSummary])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListRoutesResponse Source #

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

ListRoutes, listRoutesResponse_nextToken - The token for the next page of results.

$sel:routeSummaryList:ListRoutesResponse', listRoutesResponse_routeSummaryList - The list of RouteSummary objects.

$sel:httpStatus:ListRoutesResponse', listRoutesResponse_httpStatus - The response's http status code.

ListServices (Paginated)

data ListServices Source #

See: newListServices smart constructor.

Instances

Instances details
ToHeaders ListServices Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListServices

ToPath ListServices Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListServices

ToQuery ListServices Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListServices

AWSPager ListServices Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListServices

AWSRequest ListServices Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListServices

Associated Types

type AWSResponse ListServices #

Generic ListServices Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListServices

Associated Types

type Rep ListServices :: Type -> Type #

Read ListServices Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListServices

Show ListServices Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListServices

NFData ListServices Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListServices

Methods

rnf :: ListServices -> () #

Eq ListServices Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListServices

Hashable ListServices Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListServices

type AWSResponse ListServices Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListServices

type Rep ListServices Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListServices

type Rep ListServices = D1 ('MetaData "ListServices" "Amazonka.MigrationHubReFactorSpaces.ListServices" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" '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))) :*: (S1 ('MetaSel ('Just "applicationIdentifier") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "environmentIdentifier") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newListServices 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 results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

ListServices, listServices_nextToken - The token for the next page of results.

$sel:applicationIdentifier:ListServices', listServices_applicationIdentifier - The ID of the application.

$sel:environmentIdentifier:ListServices', listServices_environmentIdentifier - The ID of the environment.

data ListServicesResponse Source #

See: newListServicesResponse smart constructor.

Instances

Instances details
Generic ListServicesResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListServices

Associated Types

type Rep ListServicesResponse :: Type -> Type #

Show ListServicesResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListServices

NFData ListServicesResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListServices

Methods

rnf :: ListServicesResponse -> () #

Eq ListServicesResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListServices

type Rep ListServicesResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListServices

type Rep ListServicesResponse = D1 ('MetaData "ListServicesResponse" "Amazonka.MigrationHubReFactorSpaces.ListServices" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "ListServicesResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "serviceSummaryList") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [ServiceSummary])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

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 - The token for the next page of results.

$sel:serviceSummaryList:ListServicesResponse', listServicesResponse_serviceSummaryList - The list of ServiceSummary objects.

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

ListTagsForResource

data ListTagsForResource Source #

See: newListTagsForResource smart constructor.

Instances

Instances details
ToHeaders ListTagsForResource Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListTagsForResource

ToPath ListTagsForResource Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListTagsForResource

ToQuery ListTagsForResource Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListTagsForResource

AWSRequest ListTagsForResource Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListTagsForResource

Associated Types

type AWSResponse ListTagsForResource #

Generic ListTagsForResource Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListTagsForResource

Associated Types

type Rep ListTagsForResource :: Type -> Type #

Read ListTagsForResource Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListTagsForResource

Show ListTagsForResource Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListTagsForResource

NFData ListTagsForResource Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListTagsForResource

Methods

rnf :: ListTagsForResource -> () #

Eq ListTagsForResource Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListTagsForResource

Hashable ListTagsForResource Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListTagsForResource

type AWSResponse ListTagsForResource Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListTagsForResource

type Rep ListTagsForResource Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListTagsForResource

type Rep ListTagsForResource = D1 ('MetaData "ListTagsForResource" "Amazonka.MigrationHubReFactorSpaces.ListTagsForResource" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "ListTagsForResource'" 'PrefixI 'True) (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:resourceArn:ListTagsForResource', listTagsForResource_resourceArn - The Amazon Resource Name (ARN) of the resource.

data ListTagsForResourceResponse Source #

See: newListTagsForResourceResponse smart constructor.

Instances

Instances details
Generic ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListTagsForResource

Associated Types

type Rep ListTagsForResourceResponse :: Type -> Type #

Show ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListTagsForResource

NFData ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListTagsForResource

Eq ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListTagsForResource

type Rep ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.ListTagsForResource

type Rep ListTagsForResourceResponse = D1 ('MetaData "ListTagsForResourceResponse" "Amazonka.MigrationHubReFactorSpaces.ListTagsForResource" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "ListTagsForResourceResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive (HashMap Text Text)))) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

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:

ListTagsForResourceResponse, listTagsForResourceResponse_tags - The list of tags assigned to the resource.

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

PutResourcePolicy

data PutResourcePolicy Source #

See: newPutResourcePolicy smart constructor.

Instances

Instances details
ToJSON PutResourcePolicy Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.PutResourcePolicy

ToHeaders PutResourcePolicy Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.PutResourcePolicy

ToPath PutResourcePolicy Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.PutResourcePolicy

ToQuery PutResourcePolicy Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.PutResourcePolicy

AWSRequest PutResourcePolicy Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.PutResourcePolicy

Associated Types

type AWSResponse PutResourcePolicy #

Generic PutResourcePolicy Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.PutResourcePolicy

Associated Types

type Rep PutResourcePolicy :: Type -> Type #

Read PutResourcePolicy Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.PutResourcePolicy

Show PutResourcePolicy Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.PutResourcePolicy

NFData PutResourcePolicy Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.PutResourcePolicy

Methods

rnf :: PutResourcePolicy -> () #

Eq PutResourcePolicy Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.PutResourcePolicy

Hashable PutResourcePolicy Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.PutResourcePolicy

type AWSResponse PutResourcePolicy Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.PutResourcePolicy

type Rep PutResourcePolicy Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.PutResourcePolicy

type Rep PutResourcePolicy = D1 ('MetaData "PutResourcePolicy" "Amazonka.MigrationHubReFactorSpaces.PutResourcePolicy" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "PutResourcePolicy'" 'PrefixI 'True) (S1 ('MetaSel ('Just "policy") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "resourceArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newPutResourcePolicy Source #

Create a value of PutResourcePolicy 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:policy:PutResourcePolicy', putResourcePolicy_policy - A JSON-formatted string for an Amazon Web Services resource-based policy.

$sel:resourceArn:PutResourcePolicy', putResourcePolicy_resourceArn - The Amazon Resource Name (ARN) of the resource to which the policy is being attached.

data PutResourcePolicyResponse Source #

See: newPutResourcePolicyResponse smart constructor.

Instances

Instances details
Generic PutResourcePolicyResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.PutResourcePolicy

Associated Types

type Rep PutResourcePolicyResponse :: Type -> Type #

Read PutResourcePolicyResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.PutResourcePolicy

Show PutResourcePolicyResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.PutResourcePolicy

NFData PutResourcePolicyResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.PutResourcePolicy

Eq PutResourcePolicyResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.PutResourcePolicy

type Rep PutResourcePolicyResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.PutResourcePolicy

type Rep PutResourcePolicyResponse = D1 ('MetaData "PutResourcePolicyResponse" "Amazonka.MigrationHubReFactorSpaces.PutResourcePolicy" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "PutResourcePolicyResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newPutResourcePolicyResponse Source #

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

TagResource

data TagResource Source #

See: newTagResource smart constructor.

Instances

Instances details
ToJSON TagResource Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.TagResource

ToHeaders TagResource Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.TagResource

Methods

toHeaders :: TagResource -> [Header] #

ToPath TagResource Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.TagResource

ToQuery TagResource Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.TagResource

AWSRequest TagResource Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.TagResource

Associated Types

type AWSResponse TagResource #

Generic TagResource Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.TagResource

Associated Types

type Rep TagResource :: Type -> Type #

Show TagResource Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.TagResource

NFData TagResource Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.TagResource

Methods

rnf :: TagResource -> () #

Eq TagResource Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.TagResource

Hashable TagResource Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.TagResource

type AWSResponse TagResource Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.TagResource

type Rep TagResource Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.TagResource

type Rep TagResource = D1 ('MetaData "TagResource" "Amazonka.MigrationHubReFactorSpaces.TagResource" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "TagResource'" 'PrefixI 'True) (S1 ('MetaSel ('Just "resourceArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Sensitive (HashMap Text Text)))))

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 resource.

TagResource, tagResource_tags - The new or modified tags for the resource.

data TagResourceResponse Source #

See: newTagResourceResponse smart constructor.

Instances

Instances details
Generic TagResourceResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.TagResource

Associated Types

type Rep TagResourceResponse :: Type -> Type #

Read TagResourceResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.TagResource

Show TagResourceResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.TagResource

NFData TagResourceResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.TagResource

Methods

rnf :: TagResourceResponse -> () #

Eq TagResourceResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.TagResource

type Rep TagResourceResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.TagResource

type Rep TagResourceResponse = D1 ('MetaData "TagResourceResponse" "Amazonka.MigrationHubReFactorSpaces.TagResource" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" '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 (Sensitive [Text]) 

Instances

Instances details
ToHeaders UntagResource Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.UntagResource

ToPath UntagResource Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.UntagResource

ToQuery UntagResource Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.UntagResource

AWSRequest UntagResource Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.UntagResource

Associated Types

type AWSResponse UntagResource #

Generic UntagResource Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.UntagResource

Associated Types

type Rep UntagResource :: Type -> Type #

Show UntagResource Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.UntagResource

NFData UntagResource Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.UntagResource

Methods

rnf :: UntagResource -> () #

Eq UntagResource Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.UntagResource

Hashable UntagResource Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.UntagResource

type AWSResponse UntagResource Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.UntagResource

type Rep UntagResource Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.UntagResource

type Rep UntagResource = D1 ('MetaData "UntagResource" "Amazonka.MigrationHubReFactorSpaces.UntagResource" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "UntagResource'" 'PrefixI 'True) (S1 ('MetaSel ('Just "resourceArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "tagKeys") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Sensitive [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.

$sel:tagKeys:UntagResource', untagResource_tagKeys - The list of keys of the 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.MigrationHubReFactorSpaces.UntagResource

Associated Types

type Rep UntagResourceResponse :: Type -> Type #

Read UntagResourceResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.UntagResource

Show UntagResourceResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.UntagResource

NFData UntagResourceResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.UntagResource

Methods

rnf :: UntagResourceResponse -> () #

Eq UntagResourceResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.UntagResource

type Rep UntagResourceResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.UntagResource

type Rep UntagResourceResponse = D1 ('MetaData "UntagResourceResponse" "Amazonka.MigrationHubReFactorSpaces.UntagResource" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" '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.

UpdateRoute

data UpdateRoute Source #

See: newUpdateRoute smart constructor.

Instances

Instances details
ToJSON UpdateRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.UpdateRoute

ToHeaders UpdateRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.UpdateRoute

Methods

toHeaders :: UpdateRoute -> [Header] #

ToPath UpdateRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.UpdateRoute

ToQuery UpdateRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.UpdateRoute

AWSRequest UpdateRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.UpdateRoute

Associated Types

type AWSResponse UpdateRoute #

Generic UpdateRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.UpdateRoute

Associated Types

type Rep UpdateRoute :: Type -> Type #

Read UpdateRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.UpdateRoute

Show UpdateRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.UpdateRoute

NFData UpdateRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.UpdateRoute

Methods

rnf :: UpdateRoute -> () #

Eq UpdateRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.UpdateRoute

Hashable UpdateRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.UpdateRoute

type AWSResponse UpdateRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.UpdateRoute

type Rep UpdateRoute Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.UpdateRoute

type Rep UpdateRoute = D1 ('MetaData "UpdateRoute" "Amazonka.MigrationHubReFactorSpaces.UpdateRoute" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "UpdateRoute'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "activationState") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 RouteActivationState) :*: S1 ('MetaSel ('Just "applicationIdentifier") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "environmentIdentifier") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "routeIdentifier") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newUpdateRoute Source #

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

UpdateRoute, updateRoute_activationState - If set to ACTIVE, traffic is forwarded to this route’s service after the route is updated.

$sel:applicationIdentifier:UpdateRoute', updateRoute_applicationIdentifier - The ID of the application within which the route is being updated.

$sel:environmentIdentifier:UpdateRoute', updateRoute_environmentIdentifier - The ID of the environment in which the route is being updated.

$sel:routeIdentifier:UpdateRoute', updateRoute_routeIdentifier - The unique identifier of the route to update.

data UpdateRouteResponse Source #

See: newUpdateRouteResponse smart constructor.

Instances

Instances details
Generic UpdateRouteResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.UpdateRoute

Associated Types

type Rep UpdateRouteResponse :: Type -> Type #

Read UpdateRouteResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.UpdateRoute

Show UpdateRouteResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.UpdateRoute

NFData UpdateRouteResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.UpdateRoute

Methods

rnf :: UpdateRouteResponse -> () #

Eq UpdateRouteResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.UpdateRoute

type Rep UpdateRouteResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.UpdateRoute

type Rep UpdateRouteResponse = D1 ('MetaData "UpdateRouteResponse" "Amazonka.MigrationHubReFactorSpaces.UpdateRoute" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "UpdateRouteResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "applicationId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "lastUpdatedTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)))) :*: ((S1 ('MetaSel ('Just "routeId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "serviceId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "state") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe RouteState)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))))

newUpdateRouteResponse Source #

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

UpdateRouteResponse, updateRouteResponse_applicationId - The ID of the application in which the route is being updated.

UpdateRouteResponse, updateRouteResponse_arn - The Amazon Resource Name (ARN) of the route. The format for this ARN is arn:aws:refactor-spaces:region:account-id:resource-type/resource-id . For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference.

UpdateRouteResponse, updateRouteResponse_lastUpdatedTime - A timestamp that indicates when the route was last updated.

UpdateRouteResponse, updateRouteResponse_routeId - The unique identifier of the route.

UpdateRouteResponse, updateRouteResponse_serviceId - The ID of service in which the route was created. Traffic that matches this route is forwarded to this service.

UpdateRouteResponse, updateRouteResponse_state - The current state of the route.

$sel:httpStatus:UpdateRouteResponse', updateRouteResponse_httpStatus - The response's http status code.

Types

ApiGatewayEndpointType

newtype ApiGatewayEndpointType Source #

Instances

Instances details
FromJSON ApiGatewayEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayEndpointType

FromJSONKey ApiGatewayEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayEndpointType

ToJSON ApiGatewayEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayEndpointType

ToJSONKey ApiGatewayEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayEndpointType

ToByteString ApiGatewayEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayEndpointType

ToHeader ApiGatewayEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayEndpointType

ToLog ApiGatewayEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayEndpointType

ToQuery ApiGatewayEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayEndpointType

FromText ApiGatewayEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayEndpointType

ToText ApiGatewayEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayEndpointType

FromXML ApiGatewayEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayEndpointType

ToXML ApiGatewayEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayEndpointType

Generic ApiGatewayEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayEndpointType

Associated Types

type Rep ApiGatewayEndpointType :: Type -> Type #

Read ApiGatewayEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayEndpointType

Show ApiGatewayEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayEndpointType

NFData ApiGatewayEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayEndpointType

Methods

rnf :: ApiGatewayEndpointType -> () #

Eq ApiGatewayEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayEndpointType

Ord ApiGatewayEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayEndpointType

Hashable ApiGatewayEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayEndpointType

type Rep ApiGatewayEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayEndpointType

type Rep ApiGatewayEndpointType = D1 ('MetaData "ApiGatewayEndpointType" "Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayEndpointType" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'True) (C1 ('MetaCons "ApiGatewayEndpointType'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromApiGatewayEndpointType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

ApplicationState

newtype ApplicationState Source #

Instances

Instances details
FromJSON ApplicationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApplicationState

FromJSONKey ApplicationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApplicationState

ToJSON ApplicationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApplicationState

ToJSONKey ApplicationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApplicationState

ToByteString ApplicationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApplicationState

ToHeader ApplicationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApplicationState

ToLog ApplicationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApplicationState

ToQuery ApplicationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApplicationState

FromText ApplicationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApplicationState

ToText ApplicationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApplicationState

FromXML ApplicationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApplicationState

ToXML ApplicationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApplicationState

Generic ApplicationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApplicationState

Associated Types

type Rep ApplicationState :: Type -> Type #

Read ApplicationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApplicationState

Show ApplicationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApplicationState

NFData ApplicationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApplicationState

Methods

rnf :: ApplicationState -> () #

Eq ApplicationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApplicationState

Ord ApplicationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApplicationState

Hashable ApplicationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApplicationState

type Rep ApplicationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApplicationState

type Rep ApplicationState = D1 ('MetaData "ApplicationState" "Amazonka.MigrationHubReFactorSpaces.Types.ApplicationState" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'True) (C1 ('MetaCons "ApplicationState'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromApplicationState") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

EnvironmentState

newtype EnvironmentState Source #

Instances

Instances details
FromJSON EnvironmentState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.EnvironmentState

FromJSONKey EnvironmentState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.EnvironmentState

ToJSON EnvironmentState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.EnvironmentState

ToJSONKey EnvironmentState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.EnvironmentState

ToByteString EnvironmentState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.EnvironmentState

ToHeader EnvironmentState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.EnvironmentState

ToLog EnvironmentState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.EnvironmentState

ToQuery EnvironmentState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.EnvironmentState

FromText EnvironmentState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.EnvironmentState

ToText EnvironmentState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.EnvironmentState

FromXML EnvironmentState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.EnvironmentState

ToXML EnvironmentState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.EnvironmentState

Generic EnvironmentState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.EnvironmentState

Associated Types

type Rep EnvironmentState :: Type -> Type #

Read EnvironmentState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.EnvironmentState

Show EnvironmentState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.EnvironmentState

NFData EnvironmentState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.EnvironmentState

Methods

rnf :: EnvironmentState -> () #

Eq EnvironmentState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.EnvironmentState

Ord EnvironmentState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.EnvironmentState

Hashable EnvironmentState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.EnvironmentState

type Rep EnvironmentState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.EnvironmentState

type Rep EnvironmentState = D1 ('MetaData "EnvironmentState" "Amazonka.MigrationHubReFactorSpaces.Types.EnvironmentState" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'True) (C1 ('MetaCons "EnvironmentState'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromEnvironmentState") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

ErrorCode

newtype ErrorCode Source #

Constructors

ErrorCode' 

Fields

Instances

Instances details
FromJSON ErrorCode Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorCode

FromJSONKey ErrorCode Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorCode

ToJSON ErrorCode Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorCode

ToJSONKey ErrorCode Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorCode

ToByteString ErrorCode Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorCode

Methods

toBS :: ErrorCode -> ByteString #

ToHeader ErrorCode Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorCode

ToLog ErrorCode Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorCode

ToQuery ErrorCode Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorCode

FromText ErrorCode Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorCode

ToText ErrorCode Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorCode

Methods

toText :: ErrorCode -> Text #

FromXML ErrorCode Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorCode

ToXML ErrorCode Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorCode

Methods

toXML :: ErrorCode -> XML #

Generic ErrorCode Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorCode

Associated Types

type Rep ErrorCode :: Type -> Type #

Read ErrorCode Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorCode

Show ErrorCode Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorCode

NFData ErrorCode Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorCode

Methods

rnf :: ErrorCode -> () #

Eq ErrorCode Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorCode

Ord ErrorCode Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorCode

Hashable ErrorCode Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorCode

type Rep ErrorCode Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorCode

type Rep ErrorCode = D1 ('MetaData "ErrorCode" "Amazonka.MigrationHubReFactorSpaces.Types.ErrorCode" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'True) (C1 ('MetaCons "ErrorCode'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromErrorCode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

ErrorResourceType

newtype ErrorResourceType Source #

Instances

Instances details
FromJSON ErrorResourceType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorResourceType

FromJSONKey ErrorResourceType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorResourceType

ToJSON ErrorResourceType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorResourceType

ToJSONKey ErrorResourceType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorResourceType

ToByteString ErrorResourceType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorResourceType

ToHeader ErrorResourceType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorResourceType

ToLog ErrorResourceType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorResourceType

ToQuery ErrorResourceType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorResourceType

FromText ErrorResourceType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorResourceType

ToText ErrorResourceType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorResourceType

FromXML ErrorResourceType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorResourceType

ToXML ErrorResourceType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorResourceType

Generic ErrorResourceType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorResourceType

Associated Types

type Rep ErrorResourceType :: Type -> Type #

Read ErrorResourceType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorResourceType

Show ErrorResourceType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorResourceType

NFData ErrorResourceType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorResourceType

Methods

rnf :: ErrorResourceType -> () #

Eq ErrorResourceType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorResourceType

Ord ErrorResourceType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorResourceType

Hashable ErrorResourceType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorResourceType

type Rep ErrorResourceType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorResourceType

type Rep ErrorResourceType = D1 ('MetaData "ErrorResourceType" "Amazonka.MigrationHubReFactorSpaces.Types.ErrorResourceType" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'True) (C1 ('MetaCons "ErrorResourceType'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromErrorResourceType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

HttpMethod

newtype HttpMethod Source #

Constructors

HttpMethod' 

Fields

Instances

Instances details
FromJSON HttpMethod Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.HttpMethod

FromJSONKey HttpMethod Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.HttpMethod

ToJSON HttpMethod Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.HttpMethod

ToJSONKey HttpMethod Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.HttpMethod

ToByteString HttpMethod Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.HttpMethod

ToHeader HttpMethod Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.HttpMethod

ToLog HttpMethod Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.HttpMethod

ToQuery HttpMethod Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.HttpMethod

FromText HttpMethod Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.HttpMethod

ToText HttpMethod Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.HttpMethod

Methods

toText :: HttpMethod -> Text #

FromXML HttpMethod Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.HttpMethod

ToXML HttpMethod Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.HttpMethod

Methods

toXML :: HttpMethod -> XML #

Generic HttpMethod Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.HttpMethod

Associated Types

type Rep HttpMethod :: Type -> Type #

Read HttpMethod Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.HttpMethod

Show HttpMethod Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.HttpMethod

NFData HttpMethod Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.HttpMethod

Methods

rnf :: HttpMethod -> () #

Eq HttpMethod Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.HttpMethod

Ord HttpMethod Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.HttpMethod

Hashable HttpMethod Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.HttpMethod

type Rep HttpMethod Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.HttpMethod

type Rep HttpMethod = D1 ('MetaData "HttpMethod" "Amazonka.MigrationHubReFactorSpaces.Types.HttpMethod" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'True) (C1 ('MetaCons "HttpMethod'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromHttpMethod") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

NetworkFabricType

newtype NetworkFabricType Source #

Instances

Instances details
FromJSON NetworkFabricType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.NetworkFabricType

FromJSONKey NetworkFabricType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.NetworkFabricType

ToJSON NetworkFabricType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.NetworkFabricType

ToJSONKey NetworkFabricType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.NetworkFabricType

ToByteString NetworkFabricType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.NetworkFabricType

ToHeader NetworkFabricType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.NetworkFabricType

ToLog NetworkFabricType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.NetworkFabricType

ToQuery NetworkFabricType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.NetworkFabricType

FromText NetworkFabricType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.NetworkFabricType

ToText NetworkFabricType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.NetworkFabricType

FromXML NetworkFabricType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.NetworkFabricType

ToXML NetworkFabricType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.NetworkFabricType

Generic NetworkFabricType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.NetworkFabricType

Associated Types

type Rep NetworkFabricType :: Type -> Type #

Read NetworkFabricType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.NetworkFabricType

Show NetworkFabricType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.NetworkFabricType

NFData NetworkFabricType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.NetworkFabricType

Methods

rnf :: NetworkFabricType -> () #

Eq NetworkFabricType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.NetworkFabricType

Ord NetworkFabricType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.NetworkFabricType

Hashable NetworkFabricType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.NetworkFabricType

type Rep NetworkFabricType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.NetworkFabricType

type Rep NetworkFabricType = D1 ('MetaData "NetworkFabricType" "Amazonka.MigrationHubReFactorSpaces.Types.NetworkFabricType" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'True) (C1 ('MetaCons "NetworkFabricType'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromNetworkFabricType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

ProxyType

newtype ProxyType Source #

Constructors

ProxyType' 

Fields

Bundled Patterns

pattern ProxyType_API_GATEWAY :: ProxyType 

Instances

Instances details
FromJSON ProxyType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ProxyType

FromJSONKey ProxyType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ProxyType

ToJSON ProxyType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ProxyType

ToJSONKey ProxyType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ProxyType

ToByteString ProxyType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ProxyType

Methods

toBS :: ProxyType -> ByteString #

ToHeader ProxyType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ProxyType

ToLog ProxyType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ProxyType

ToQuery ProxyType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ProxyType

FromText ProxyType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ProxyType

ToText ProxyType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ProxyType

Methods

toText :: ProxyType -> Text #

FromXML ProxyType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ProxyType

ToXML ProxyType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ProxyType

Methods

toXML :: ProxyType -> XML #

Generic ProxyType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ProxyType

Associated Types

type Rep ProxyType :: Type -> Type #

Read ProxyType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ProxyType

Show ProxyType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ProxyType

NFData ProxyType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ProxyType

Methods

rnf :: ProxyType -> () #

Eq ProxyType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ProxyType

Ord ProxyType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ProxyType

Hashable ProxyType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ProxyType

type Rep ProxyType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ProxyType

type Rep ProxyType = D1 ('MetaData "ProxyType" "Amazonka.MigrationHubReFactorSpaces.Types.ProxyType" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'True) (C1 ('MetaCons "ProxyType'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromProxyType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

RouteActivationState

newtype RouteActivationState Source #

Instances

Instances details
FromJSON RouteActivationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteActivationState

FromJSONKey RouteActivationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteActivationState

ToJSON RouteActivationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteActivationState

ToJSONKey RouteActivationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteActivationState

ToByteString RouteActivationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteActivationState

ToHeader RouteActivationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteActivationState

ToLog RouteActivationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteActivationState

ToQuery RouteActivationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteActivationState

FromText RouteActivationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteActivationState

ToText RouteActivationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteActivationState

FromXML RouteActivationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteActivationState

ToXML RouteActivationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteActivationState

Generic RouteActivationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteActivationState

Associated Types

type Rep RouteActivationState :: Type -> Type #

Read RouteActivationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteActivationState

Show RouteActivationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteActivationState

NFData RouteActivationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteActivationState

Methods

rnf :: RouteActivationState -> () #

Eq RouteActivationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteActivationState

Ord RouteActivationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteActivationState

Hashable RouteActivationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteActivationState

type Rep RouteActivationState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteActivationState

type Rep RouteActivationState = D1 ('MetaData "RouteActivationState" "Amazonka.MigrationHubReFactorSpaces.Types.RouteActivationState" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'True) (C1 ('MetaCons "RouteActivationState'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromRouteActivationState") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

RouteState

newtype RouteState Source #

Constructors

RouteState' 

Fields

Instances

Instances details
FromJSON RouteState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteState

FromJSONKey RouteState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteState

ToJSON RouteState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteState

ToJSONKey RouteState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteState

ToByteString RouteState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteState

ToHeader RouteState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteState

ToLog RouteState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteState

ToQuery RouteState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteState

FromText RouteState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteState

ToText RouteState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteState

Methods

toText :: RouteState -> Text #

FromXML RouteState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteState

ToXML RouteState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteState

Methods

toXML :: RouteState -> XML #

Generic RouteState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteState

Associated Types

type Rep RouteState :: Type -> Type #

Read RouteState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteState

Show RouteState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteState

NFData RouteState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteState

Methods

rnf :: RouteState -> () #

Eq RouteState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteState

Ord RouteState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteState

Hashable RouteState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteState

type Rep RouteState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteState

type Rep RouteState = D1 ('MetaData "RouteState" "Amazonka.MigrationHubReFactorSpaces.Types.RouteState" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'True) (C1 ('MetaCons "RouteState'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromRouteState") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

RouteType

newtype RouteType Source #

Constructors

RouteType' 

Fields

Bundled Patterns

pattern RouteType_DEFAULT :: RouteType 
pattern RouteType_URI_PATH :: RouteType 

Instances

Instances details
FromJSON RouteType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteType

FromJSONKey RouteType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteType

ToJSON RouteType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteType

ToJSONKey RouteType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteType

ToByteString RouteType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteType

Methods

toBS :: RouteType -> ByteString #

ToHeader RouteType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteType

ToLog RouteType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteType

ToQuery RouteType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteType

FromText RouteType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteType

ToText RouteType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteType

Methods

toText :: RouteType -> Text #

FromXML RouteType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteType

ToXML RouteType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteType

Methods

toXML :: RouteType -> XML #

Generic RouteType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteType

Associated Types

type Rep RouteType :: Type -> Type #

Read RouteType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteType

Show RouteType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteType

NFData RouteType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteType

Methods

rnf :: RouteType -> () #

Eq RouteType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteType

Ord RouteType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteType

Hashable RouteType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteType

type Rep RouteType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteType

type Rep RouteType = D1 ('MetaData "RouteType" "Amazonka.MigrationHubReFactorSpaces.Types.RouteType" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'True) (C1 ('MetaCons "RouteType'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromRouteType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

ServiceEndpointType

newtype ServiceEndpointType Source #

Instances

Instances details
FromJSON ServiceEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceEndpointType

FromJSONKey ServiceEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceEndpointType

ToJSON ServiceEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceEndpointType

ToJSONKey ServiceEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceEndpointType

ToByteString ServiceEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceEndpointType

ToHeader ServiceEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceEndpointType

ToLog ServiceEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceEndpointType

ToQuery ServiceEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceEndpointType

FromText ServiceEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceEndpointType

ToText ServiceEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceEndpointType

FromXML ServiceEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceEndpointType

ToXML ServiceEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceEndpointType

Generic ServiceEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceEndpointType

Associated Types

type Rep ServiceEndpointType :: Type -> Type #

Read ServiceEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceEndpointType

Show ServiceEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceEndpointType

NFData ServiceEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceEndpointType

Methods

rnf :: ServiceEndpointType -> () #

Eq ServiceEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceEndpointType

Ord ServiceEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceEndpointType

Hashable ServiceEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceEndpointType

type Rep ServiceEndpointType Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceEndpointType

type Rep ServiceEndpointType = D1 ('MetaData "ServiceEndpointType" "Amazonka.MigrationHubReFactorSpaces.Types.ServiceEndpointType" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'True) (C1 ('MetaCons "ServiceEndpointType'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromServiceEndpointType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

ServiceState

newtype ServiceState Source #

Constructors

ServiceState' 

Instances

Instances details
FromJSON ServiceState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceState

FromJSONKey ServiceState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceState

ToJSON ServiceState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceState

ToJSONKey ServiceState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceState

ToByteString ServiceState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceState

ToHeader ServiceState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceState

ToLog ServiceState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceState

ToQuery ServiceState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceState

FromText ServiceState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceState

ToText ServiceState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceState

Methods

toText :: ServiceState -> Text #

FromXML ServiceState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceState

ToXML ServiceState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceState

Methods

toXML :: ServiceState -> XML #

Generic ServiceState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceState

Associated Types

type Rep ServiceState :: Type -> Type #

Read ServiceState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceState

Show ServiceState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceState

NFData ServiceState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceState

Methods

rnf :: ServiceState -> () #

Eq ServiceState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceState

Ord ServiceState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceState

Hashable ServiceState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceState

type Rep ServiceState Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceState

type Rep ServiceState = D1 ('MetaData "ServiceState" "Amazonka.MigrationHubReFactorSpaces.Types.ServiceState" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'True) (C1 ('MetaCons "ServiceState'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromServiceState") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

ApiGatewayProxyConfig

data ApiGatewayProxyConfig Source #

A wrapper object holding the Amazon API Gateway proxy configuration.

See: newApiGatewayProxyConfig smart constructor.

Instances

Instances details
FromJSON ApiGatewayProxyConfig Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayProxyConfig

Generic ApiGatewayProxyConfig Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayProxyConfig

Associated Types

type Rep ApiGatewayProxyConfig :: Type -> Type #

Read ApiGatewayProxyConfig Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayProxyConfig

Show ApiGatewayProxyConfig Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayProxyConfig

NFData ApiGatewayProxyConfig Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayProxyConfig

Methods

rnf :: ApiGatewayProxyConfig -> () #

Eq ApiGatewayProxyConfig Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayProxyConfig

Hashable ApiGatewayProxyConfig Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayProxyConfig

type Rep ApiGatewayProxyConfig Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayProxyConfig

type Rep ApiGatewayProxyConfig = D1 ('MetaData "ApiGatewayProxyConfig" "Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayProxyConfig" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "ApiGatewayProxyConfig'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "apiGatewayId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "endpointType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ApiGatewayEndpointType)) :*: S1 ('MetaSel ('Just "nlbArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "nlbName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "proxyUrl") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "stageName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "vpcLinkId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))))

newApiGatewayProxyConfig :: ApiGatewayProxyConfig Source #

Create a value of ApiGatewayProxyConfig 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:apiGatewayId:ApiGatewayProxyConfig', apiGatewayProxyConfig_apiGatewayId - The resource ID of the API Gateway for the proxy.

$sel:endpointType:ApiGatewayProxyConfig', apiGatewayProxyConfig_endpointType - The type of API Gateway endpoint created.

$sel:nlbArn:ApiGatewayProxyConfig', apiGatewayProxyConfig_nlbArn - The Amazon Resource Name (ARN) of the Network Load Balancer configured by the API Gateway proxy.

$sel:nlbName:ApiGatewayProxyConfig', apiGatewayProxyConfig_nlbName - The name of the Network Load Balancer that is configured by the API Gateway proxy.

$sel:proxyUrl:ApiGatewayProxyConfig', apiGatewayProxyConfig_proxyUrl - The endpoint URL of the API Gateway proxy.

$sel:stageName:ApiGatewayProxyConfig', apiGatewayProxyConfig_stageName - The name of the API Gateway stage. The name defaults to prod.

$sel:vpcLinkId:ApiGatewayProxyConfig', apiGatewayProxyConfig_vpcLinkId - The VpcLink ID of the API Gateway proxy.

ApiGatewayProxyInput

data ApiGatewayProxyInput Source #

A wrapper object holding the Amazon API Gateway endpoint input.

See: newApiGatewayProxyInput smart constructor.

Instances

Instances details
FromJSON ApiGatewayProxyInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayProxyInput

ToJSON ApiGatewayProxyInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayProxyInput

Generic ApiGatewayProxyInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayProxyInput

Associated Types

type Rep ApiGatewayProxyInput :: Type -> Type #

Read ApiGatewayProxyInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayProxyInput

Show ApiGatewayProxyInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayProxyInput

NFData ApiGatewayProxyInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayProxyInput

Methods

rnf :: ApiGatewayProxyInput -> () #

Eq ApiGatewayProxyInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayProxyInput

Hashable ApiGatewayProxyInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayProxyInput

type Rep ApiGatewayProxyInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayProxyInput

type Rep ApiGatewayProxyInput = D1 ('MetaData "ApiGatewayProxyInput" "Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayProxyInput" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "ApiGatewayProxyInput'" 'PrefixI 'True) (S1 ('MetaSel ('Just "endpointType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ApiGatewayEndpointType)) :*: S1 ('MetaSel ('Just "stageName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newApiGatewayProxyInput :: ApiGatewayProxyInput Source #

Create a value of ApiGatewayProxyInput 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:endpointType:ApiGatewayProxyInput', apiGatewayProxyInput_endpointType - The type of endpoint to use for the API Gateway proxy. If no value is specified in the request, the value is set to REGIONAL by default.

If the value is set to PRIVATE in the request, this creates a private API endpoint that is isolated from the public internet. The private endpoint can only be accessed by using Amazon Virtual Private Cloud (Amazon VPC) endpoints for Amazon API Gateway that have been granted access.

$sel:stageName:ApiGatewayProxyInput', apiGatewayProxyInput_stageName - The name of the API Gateway stage. The name defaults to prod.

ApiGatewayProxySummary

data ApiGatewayProxySummary Source #

A wrapper object holding the Amazon API Gateway proxy summary.

See: newApiGatewayProxySummary smart constructor.

Instances

Instances details
FromJSON ApiGatewayProxySummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayProxySummary

Generic ApiGatewayProxySummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayProxySummary

Associated Types

type Rep ApiGatewayProxySummary :: Type -> Type #

Read ApiGatewayProxySummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayProxySummary

Show ApiGatewayProxySummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayProxySummary

NFData ApiGatewayProxySummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayProxySummary

Methods

rnf :: ApiGatewayProxySummary -> () #

Eq ApiGatewayProxySummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayProxySummary

Hashable ApiGatewayProxySummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayProxySummary

type Rep ApiGatewayProxySummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayProxySummary

type Rep ApiGatewayProxySummary = D1 ('MetaData "ApiGatewayProxySummary" "Amazonka.MigrationHubReFactorSpaces.Types.ApiGatewayProxySummary" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "ApiGatewayProxySummary'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "apiGatewayId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "endpointType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ApiGatewayEndpointType)) :*: S1 ('MetaSel ('Just "nlbArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "nlbName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "proxyUrl") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "stageName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "vpcLinkId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))))

newApiGatewayProxySummary :: ApiGatewayProxySummary Source #

Create a value of ApiGatewayProxySummary 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:apiGatewayId:ApiGatewayProxySummary', apiGatewayProxySummary_apiGatewayId - The resource ID of the API Gateway for the proxy.

$sel:endpointType:ApiGatewayProxySummary', apiGatewayProxySummary_endpointType - The type of API Gateway endpoint created.

$sel:nlbArn:ApiGatewayProxySummary', apiGatewayProxySummary_nlbArn - The Amazon Resource Name (ARN) of the Network Load Balancer configured by the API Gateway proxy.

$sel:nlbName:ApiGatewayProxySummary', apiGatewayProxySummary_nlbName - The name of the Network Load Balancer that is configured by the API Gateway proxy.

$sel:proxyUrl:ApiGatewayProxySummary', apiGatewayProxySummary_proxyUrl - The endpoint URL of the API Gateway proxy.

$sel:stageName:ApiGatewayProxySummary', apiGatewayProxySummary_stageName - The name of the API Gateway stage. The name defaults to prod.

$sel:vpcLinkId:ApiGatewayProxySummary', apiGatewayProxySummary_vpcLinkId - The VpcLink ID of the API Gateway proxy.

ApplicationSummary

data ApplicationSummary Source #

The list of ApplicationSummary objects.

See: newApplicationSummary smart constructor.

Instances

Instances details
FromJSON ApplicationSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApplicationSummary

Generic ApplicationSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApplicationSummary

Associated Types

type Rep ApplicationSummary :: Type -> Type #

Show ApplicationSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApplicationSummary

NFData ApplicationSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApplicationSummary

Methods

rnf :: ApplicationSummary -> () #

Eq ApplicationSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApplicationSummary

Hashable ApplicationSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApplicationSummary

type Rep ApplicationSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ApplicationSummary

type Rep ApplicationSummary = D1 ('MetaData "ApplicationSummary" "Amazonka.MigrationHubReFactorSpaces.Types.ApplicationSummary" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "ApplicationSummary'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "apiGatewayProxy") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ApiGatewayProxySummary)) :*: (S1 ('MetaSel ('Just "applicationId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "createdByAccountId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "createdTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX))) :*: (S1 ('MetaSel ('Just "environmentId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "error") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ErrorResponse))))) :*: ((S1 ('MetaSel ('Just "lastUpdatedTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "ownerAccountId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "proxyType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ProxyType)) :*: S1 ('MetaSel ('Just "state") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ApplicationState))) :*: (S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive (HashMap Text Text)))) :*: S1 ('MetaSel ('Just "vpcId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))))

newApplicationSummary :: ApplicationSummary Source #

Create a value of ApplicationSummary 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:apiGatewayProxy:ApplicationSummary', applicationSummary_apiGatewayProxy - The endpoint URL of the Amazon API Gateway proxy.

$sel:applicationId:ApplicationSummary', applicationSummary_applicationId - The unique identifier of the application.

$sel:arn:ApplicationSummary', applicationSummary_arn - The Amazon Resource Name (ARN) of the application.

$sel:createdByAccountId:ApplicationSummary', applicationSummary_createdByAccountId - The Amazon Web Services account ID of the application creator.

$sel:createdTime:ApplicationSummary', applicationSummary_createdTime - A timestamp that indicates when the application is created.

$sel:environmentId:ApplicationSummary', applicationSummary_environmentId - The unique identifier of the environment.

$sel:error:ApplicationSummary', applicationSummary_error - Any error associated with the application resource.

$sel:lastUpdatedTime:ApplicationSummary', applicationSummary_lastUpdatedTime - A timestamp that indicates when the application was last updated.

$sel:name:ApplicationSummary', applicationSummary_name - The name of the application.

$sel:ownerAccountId:ApplicationSummary', applicationSummary_ownerAccountId - The Amazon Web Services account ID of the application owner (which is always the same as the environment owner account ID).

$sel:proxyType:ApplicationSummary', applicationSummary_proxyType - The proxy type of the proxy created within the application.

$sel:state:ApplicationSummary', applicationSummary_state - The current state of the application.

$sel:tags:ApplicationSummary', applicationSummary_tags - The tags assigned to the application.

$sel:vpcId:ApplicationSummary', applicationSummary_vpcId - The ID of the virtual private cloud (VPC).

DefaultRouteInput

data DefaultRouteInput Source #

The configuration for the default route type.

See: newDefaultRouteInput smart constructor.

Instances

Instances details
ToJSON DefaultRouteInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.DefaultRouteInput

Generic DefaultRouteInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.DefaultRouteInput

Associated Types

type Rep DefaultRouteInput :: Type -> Type #

Read DefaultRouteInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.DefaultRouteInput

Show DefaultRouteInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.DefaultRouteInput

NFData DefaultRouteInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.DefaultRouteInput

Methods

rnf :: DefaultRouteInput -> () #

Eq DefaultRouteInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.DefaultRouteInput

Hashable DefaultRouteInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.DefaultRouteInput

type Rep DefaultRouteInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.DefaultRouteInput

type Rep DefaultRouteInput = D1 ('MetaData "DefaultRouteInput" "Amazonka.MigrationHubReFactorSpaces.Types.DefaultRouteInput" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "DefaultRouteInput'" 'PrefixI 'True) (S1 ('MetaSel ('Just "activationState") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe RouteActivationState))))

newDefaultRouteInput :: DefaultRouteInput Source #

Create a value of DefaultRouteInput 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:activationState:DefaultRouteInput', defaultRouteInput_activationState - If set to ACTIVE, traffic is forwarded to this route’s service after the route is created.

EnvironmentSummary

data EnvironmentSummary Source #

The summary information for environments as a response to ListEnvironments.

See: newEnvironmentSummary smart constructor.

Instances

Instances details
FromJSON EnvironmentSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.EnvironmentSummary

Generic EnvironmentSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.EnvironmentSummary

Associated Types

type Rep EnvironmentSummary :: Type -> Type #

Show EnvironmentSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.EnvironmentSummary

NFData EnvironmentSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.EnvironmentSummary

Methods

rnf :: EnvironmentSummary -> () #

Eq EnvironmentSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.EnvironmentSummary

Hashable EnvironmentSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.EnvironmentSummary

type Rep EnvironmentSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.EnvironmentSummary

type Rep EnvironmentSummary = D1 ('MetaData "EnvironmentSummary" "Amazonka.MigrationHubReFactorSpaces.Types.EnvironmentSummary" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "EnvironmentSummary'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "createdTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: (S1 ('MetaSel ('Just "environmentId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "error") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ErrorResponse)) :*: S1 ('MetaSel ('Just "lastUpdatedTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX))))) :*: ((S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "networkFabricType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe NetworkFabricType)) :*: S1 ('MetaSel ('Just "ownerAccountId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: (S1 ('MetaSel ('Just "state") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe EnvironmentState)) :*: (S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive (HashMap Text Text)))) :*: S1 ('MetaSel ('Just "transitGatewayId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))))

newEnvironmentSummary :: EnvironmentSummary 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:arn:EnvironmentSummary', environmentSummary_arn - The Amazon Resource Name (ARN) of the environment.

$sel:createdTime:EnvironmentSummary', environmentSummary_createdTime - A timestamp that indicates when the environment is created.

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

$sel:environmentId:EnvironmentSummary', environmentSummary_environmentId - The unique identifier of the environment.

$sel:error:EnvironmentSummary', environmentSummary_error - Any error associated with the environment resource.

$sel:lastUpdatedTime:EnvironmentSummary', environmentSummary_lastUpdatedTime - A timestamp that indicates when the environment was last updated.

$sel:name:EnvironmentSummary', environmentSummary_name - The name of the environment.

$sel:networkFabricType:EnvironmentSummary', environmentSummary_networkFabricType - The network fabric type of the environment.

$sel:ownerAccountId:EnvironmentSummary', environmentSummary_ownerAccountId - The Amazon Web Services account ID of the environment owner.

$sel:state:EnvironmentSummary', environmentSummary_state - The current state of the environment.

$sel:tags:EnvironmentSummary', environmentSummary_tags - The tags assigned to the environment.

$sel:transitGatewayId:EnvironmentSummary', environmentSummary_transitGatewayId - The ID of the transit gateway set up by the environment.

EnvironmentVpc

data EnvironmentVpc Source #

Provides summary information for the EnvironmentVpc resource as a response to ListEnvironmentVpc.

See: newEnvironmentVpc smart constructor.

Instances

Instances details
FromJSON EnvironmentVpc Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.EnvironmentVpc

Generic EnvironmentVpc Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.EnvironmentVpc

Associated Types

type Rep EnvironmentVpc :: Type -> Type #

Read EnvironmentVpc Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.EnvironmentVpc

Show EnvironmentVpc Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.EnvironmentVpc

NFData EnvironmentVpc Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.EnvironmentVpc

Methods

rnf :: EnvironmentVpc -> () #

Eq EnvironmentVpc Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.EnvironmentVpc

Hashable EnvironmentVpc Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.EnvironmentVpc

type Rep EnvironmentVpc Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.EnvironmentVpc

type Rep EnvironmentVpc = D1 ('MetaData "EnvironmentVpc" "Amazonka.MigrationHubReFactorSpaces.Types.EnvironmentVpc" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "EnvironmentVpc'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "accountId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "cidrBlocks") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty Text))) :*: S1 ('MetaSel ('Just "createdTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)))) :*: ((S1 ('MetaSel ('Just "environmentId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "lastUpdatedTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX))) :*: (S1 ('MetaSel ('Just "vpcId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "vpcName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))))

newEnvironmentVpc :: EnvironmentVpc Source #

Create a value of EnvironmentVpc 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:accountId:EnvironmentVpc', environmentVpc_accountId - The Amazon Web Services account ID of the virtual private cloud (VPC) owner.

$sel:cidrBlocks:EnvironmentVpc', environmentVpc_cidrBlocks - The list of Amazon Virtual Private Cloud (Amazon VPC) CIDR blocks.

$sel:createdTime:EnvironmentVpc', environmentVpc_createdTime - A timestamp that indicates when the VPC is first added to the environment.

$sel:environmentId:EnvironmentVpc', environmentVpc_environmentId - The unique identifier of the environment.

$sel:lastUpdatedTime:EnvironmentVpc', environmentVpc_lastUpdatedTime - A timestamp that indicates when the VPC was last updated by the environment.

$sel:vpcId:EnvironmentVpc', environmentVpc_vpcId - The ID of the VPC.

$sel:vpcName:EnvironmentVpc', environmentVpc_vpcName - The name of the VPC at the time it is added to the environment.

ErrorResponse

data ErrorResponse Source #

Error associated with a resource returned for a Get or List resource response.

See: newErrorResponse smart constructor.

Instances

Instances details
FromJSON ErrorResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorResponse

Generic ErrorResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorResponse

Associated Types

type Rep ErrorResponse :: Type -> Type #

Read ErrorResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorResponse

Show ErrorResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorResponse

NFData ErrorResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorResponse

Methods

rnf :: ErrorResponse -> () #

Eq ErrorResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorResponse

Hashable ErrorResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorResponse

type Rep ErrorResponse Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ErrorResponse

type Rep ErrorResponse = D1 ('MetaData "ErrorResponse" "Amazonka.MigrationHubReFactorSpaces.Types.ErrorResponse" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "ErrorResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "accountId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "additionalDetails") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text Text))) :*: S1 ('MetaSel ('Just "code") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ErrorCode)))) :*: (S1 ('MetaSel ('Just "message") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "resourceIdentifier") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "resourceType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ErrorResourceType))))))

newErrorResponse :: ErrorResponse Source #

Create a value of ErrorResponse 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:accountId:ErrorResponse', errorResponse_accountId - The Amazon Web Services account ID of the resource owner.

$sel:additionalDetails:ErrorResponse', errorResponse_additionalDetails - Additional details about the error.

$sel:code:ErrorResponse', errorResponse_code - The error code associated with the error.

$sel:message:ErrorResponse', errorResponse_message - The message associated with the error.

$sel:resourceIdentifier:ErrorResponse', errorResponse_resourceIdentifier - The ID of the resource.

$sel:resourceType:ErrorResponse', errorResponse_resourceType - The type of resource.

LambdaEndpointConfig

data LambdaEndpointConfig Source #

The configuration for the Lambda endpoint type.

See: newLambdaEndpointConfig smart constructor.

Instances

Instances details
FromJSON LambdaEndpointConfig Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.LambdaEndpointConfig

Generic LambdaEndpointConfig Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.LambdaEndpointConfig

Associated Types

type Rep LambdaEndpointConfig :: Type -> Type #

Read LambdaEndpointConfig Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.LambdaEndpointConfig

Show LambdaEndpointConfig Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.LambdaEndpointConfig

NFData LambdaEndpointConfig Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.LambdaEndpointConfig

Methods

rnf :: LambdaEndpointConfig -> () #

Eq LambdaEndpointConfig Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.LambdaEndpointConfig

Hashable LambdaEndpointConfig Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.LambdaEndpointConfig

type Rep LambdaEndpointConfig Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.LambdaEndpointConfig

type Rep LambdaEndpointConfig = D1 ('MetaData "LambdaEndpointConfig" "Amazonka.MigrationHubReFactorSpaces.Types.LambdaEndpointConfig" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "LambdaEndpointConfig'" 'PrefixI 'True) (S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newLambdaEndpointConfig :: LambdaEndpointConfig Source #

Create a value of LambdaEndpointConfig 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:LambdaEndpointConfig', lambdaEndpointConfig_arn - The Amazon Resource Name (ARN) of the Lambda endpoint.

LambdaEndpointInput

data LambdaEndpointInput Source #

The input for the Lambda endpoint type.

See: newLambdaEndpointInput smart constructor.

Instances

Instances details
FromJSON LambdaEndpointInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.LambdaEndpointInput

ToJSON LambdaEndpointInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.LambdaEndpointInput

Generic LambdaEndpointInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.LambdaEndpointInput

Associated Types

type Rep LambdaEndpointInput :: Type -> Type #

Read LambdaEndpointInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.LambdaEndpointInput

Show LambdaEndpointInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.LambdaEndpointInput

NFData LambdaEndpointInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.LambdaEndpointInput

Methods

rnf :: LambdaEndpointInput -> () #

Eq LambdaEndpointInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.LambdaEndpointInput

Hashable LambdaEndpointInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.LambdaEndpointInput

type Rep LambdaEndpointInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.LambdaEndpointInput

type Rep LambdaEndpointInput = D1 ('MetaData "LambdaEndpointInput" "Amazonka.MigrationHubReFactorSpaces.Types.LambdaEndpointInput" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "LambdaEndpointInput'" 'PrefixI 'True) (S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newLambdaEndpointInput Source #

Create a value of LambdaEndpointInput 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:LambdaEndpointInput', lambdaEndpointInput_arn - The Amazon Resource Name (ARN) of the Lambda function or alias.

LambdaEndpointSummary

data LambdaEndpointSummary Source #

The summary for the Lambda endpoint type.

See: newLambdaEndpointSummary smart constructor.

Instances

Instances details
FromJSON LambdaEndpointSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.LambdaEndpointSummary

Generic LambdaEndpointSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.LambdaEndpointSummary

Associated Types

type Rep LambdaEndpointSummary :: Type -> Type #

Read LambdaEndpointSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.LambdaEndpointSummary

Show LambdaEndpointSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.LambdaEndpointSummary

NFData LambdaEndpointSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.LambdaEndpointSummary

Methods

rnf :: LambdaEndpointSummary -> () #

Eq LambdaEndpointSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.LambdaEndpointSummary

Hashable LambdaEndpointSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.LambdaEndpointSummary

type Rep LambdaEndpointSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.LambdaEndpointSummary

type Rep LambdaEndpointSummary = D1 ('MetaData "LambdaEndpointSummary" "Amazonka.MigrationHubReFactorSpaces.Types.LambdaEndpointSummary" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "LambdaEndpointSummary'" 'PrefixI 'True) (S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newLambdaEndpointSummary :: LambdaEndpointSummary Source #

Create a value of LambdaEndpointSummary 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:LambdaEndpointSummary', lambdaEndpointSummary_arn - The Amazon Resource Name (ARN) of the Lambda endpoint.

RouteSummary

data RouteSummary Source #

The summary information for the routes as a response to ListRoutes.

See: newRouteSummary smart constructor.

Instances

Instances details
FromJSON RouteSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteSummary

Generic RouteSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteSummary

Associated Types

type Rep RouteSummary :: Type -> Type #

Show RouteSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteSummary

NFData RouteSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteSummary

Methods

rnf :: RouteSummary -> () #

Eq RouteSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteSummary

Hashable RouteSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteSummary

type Rep RouteSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.RouteSummary

type Rep RouteSummary = D1 ('MetaData "RouteSummary" "Amazonka.MigrationHubReFactorSpaces.Types.RouteSummary" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "RouteSummary'" 'PrefixI 'True) ((((S1 ('MetaSel ('Just "applicationId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "createdByAccountId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "createdTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)))) :*: ((S1 ('MetaSel ('Just "environmentId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "error") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ErrorResponse))) :*: (S1 ('MetaSel ('Just "includeChildPaths") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "lastUpdatedTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX))))) :*: (((S1 ('MetaSel ('Just "methods") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [HttpMethod])) :*: S1 ('MetaSel ('Just "ownerAccountId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "pathResourceToId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text Text))) :*: S1 ('MetaSel ('Just "routeId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "routeType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe RouteType)) :*: S1 ('MetaSel ('Just "serviceId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "sourcePath") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "state") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe RouteState)) :*: S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive (HashMap Text Text))))))))))

newRouteSummary :: RouteSummary Source #

Create a value of RouteSummary 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:applicationId:RouteSummary', routeSummary_applicationId - The unique identifier of the application.

$sel:arn:RouteSummary', routeSummary_arn - The Amazon Resource Name (ARN) of the route.

$sel:createdByAccountId:RouteSummary', routeSummary_createdByAccountId - The Amazon Web Services account ID of the route creator.

$sel:createdTime:RouteSummary', routeSummary_createdTime - A timestamp that indicates when the route is created.

$sel:environmentId:RouteSummary', routeSummary_environmentId - The unique identifier of the environment.

$sel:error:RouteSummary', routeSummary_error - Any error associated with the route resource.

$sel:includeChildPaths:RouteSummary', routeSummary_includeChildPaths - Indicates whether to match all subpaths of the given source path. If this value is false, requests must match the source path exactly before they are forwarded to this route's service.

$sel:lastUpdatedTime:RouteSummary', routeSummary_lastUpdatedTime - A timestamp that indicates when the route was last updated.

$sel:methods:RouteSummary', routeSummary_methods - A list of HTTP methods to match. An empty list matches all values. If a method is present, only HTTP requests using that method are forwarded to this route’s service.

$sel:ownerAccountId:RouteSummary', routeSummary_ownerAccountId - The Amazon Web Services account ID of the route owner.

$sel:pathResourceToId:RouteSummary', routeSummary_pathResourceToId - A mapping of Amazon API Gateway path resources to resource IDs.

$sel:routeId:RouteSummary', routeSummary_routeId - The unique identifier of the route.

$sel:routeType:RouteSummary', routeSummary_routeType - The route type of the route.

$sel:serviceId:RouteSummary', routeSummary_serviceId - The unique identifier of the service.

$sel:sourcePath:RouteSummary', routeSummary_sourcePath - The path to use to match traffic. Paths must start with / and are relative to the base of the application.

$sel:state:RouteSummary', routeSummary_state - The current state of the route.

$sel:tags:RouteSummary', routeSummary_tags - The tags assigned to the route.

ServiceSummary

data ServiceSummary Source #

A summary for the service as a response to ListServices.

See: newServiceSummary smart constructor.

Instances

Instances details
FromJSON ServiceSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceSummary

Generic ServiceSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceSummary

Associated Types

type Rep ServiceSummary :: Type -> Type #

Show ServiceSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceSummary

NFData ServiceSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceSummary

Methods

rnf :: ServiceSummary -> () #

Eq ServiceSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceSummary

Hashable ServiceSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceSummary

type Rep ServiceSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.ServiceSummary

type Rep ServiceSummary = D1 ('MetaData "ServiceSummary" "Amazonka.MigrationHubReFactorSpaces.Types.ServiceSummary" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "ServiceSummary'" 'PrefixI 'True) ((((S1 ('MetaSel ('Just "applicationId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "createdByAccountId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "createdTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)))) :*: ((S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "endpointType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ServiceEndpointType))) :*: (S1 ('MetaSel ('Just "environmentId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "error") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ErrorResponse))))) :*: (((S1 ('MetaSel ('Just "lambdaEndpoint") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe LambdaEndpointSummary)) :*: S1 ('MetaSel ('Just "lastUpdatedTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX))) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "ownerAccountId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "serviceId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "state") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ServiceState))) :*: (S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive (HashMap Text Text)))) :*: (S1 ('MetaSel ('Just "urlEndpoint") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe UrlEndpointSummary)) :*: S1 ('MetaSel ('Just "vpcId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))))))

newServiceSummary :: ServiceSummary 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:applicationId:ServiceSummary', serviceSummary_applicationId - The unique identifier of the application.

ServiceSummary, serviceSummary_arn - The Amazon Resource Name (ARN) of the service.

$sel:createdByAccountId:ServiceSummary', serviceSummary_createdByAccountId - The Amazon Web Services account ID of the service creator.

$sel:createdTime:ServiceSummary', serviceSummary_createdTime - A timestamp that indicates when the service is created.

$sel:description:ServiceSummary', serviceSummary_description - A description of the service.

$sel:endpointType:ServiceSummary', serviceSummary_endpointType - The endpoint type of the service.

$sel:environmentId:ServiceSummary', serviceSummary_environmentId - The unique identifier of the environment.

$sel:error:ServiceSummary', serviceSummary_error - Any error associated with the service resource.

$sel:lambdaEndpoint:ServiceSummary', serviceSummary_lambdaEndpoint - A summary of the configuration for the Lambda endpoint type.

$sel:lastUpdatedTime:ServiceSummary', serviceSummary_lastUpdatedTime - A timestamp that indicates when the service was last updated.

$sel:name:ServiceSummary', serviceSummary_name - The name of the service.

$sel:ownerAccountId:ServiceSummary', serviceSummary_ownerAccountId - The Amazon Web Services account ID of the service owner.

$sel:serviceId:ServiceSummary', serviceSummary_serviceId - The unique identifier of the service.

$sel:state:ServiceSummary', serviceSummary_state - The current state of the service.

$sel:tags:ServiceSummary', serviceSummary_tags - The tags assigned to the service.

$sel:urlEndpoint:ServiceSummary', serviceSummary_urlEndpoint - The summary of the configuration for the URL endpoint type.

$sel:vpcId:ServiceSummary', serviceSummary_vpcId - The ID of the virtual private cloud (VPC).

UriPathRouteInput

data UriPathRouteInput Source #

The configuration for the URI path route type.

See: newUriPathRouteInput smart constructor.

Instances

Instances details
FromJSON UriPathRouteInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.UriPathRouteInput

ToJSON UriPathRouteInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.UriPathRouteInput

Generic UriPathRouteInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.UriPathRouteInput

Associated Types

type Rep UriPathRouteInput :: Type -> Type #

Read UriPathRouteInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.UriPathRouteInput

Show UriPathRouteInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.UriPathRouteInput

NFData UriPathRouteInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.UriPathRouteInput

Methods

rnf :: UriPathRouteInput -> () #

Eq UriPathRouteInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.UriPathRouteInput

Hashable UriPathRouteInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.UriPathRouteInput

type Rep UriPathRouteInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.UriPathRouteInput

type Rep UriPathRouteInput = D1 ('MetaData "UriPathRouteInput" "Amazonka.MigrationHubReFactorSpaces.Types.UriPathRouteInput" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "UriPathRouteInput'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "includeChildPaths") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "methods") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [HttpMethod]))) :*: (S1 ('MetaSel ('Just "activationState") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 RouteActivationState) :*: S1 ('MetaSel ('Just "sourcePath") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newUriPathRouteInput Source #

Create a value of UriPathRouteInput 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:includeChildPaths:UriPathRouteInput', uriPathRouteInput_includeChildPaths - Indicates whether to match all subpaths of the given source path. If this value is false, requests must match the source path exactly before they are forwarded to this route's service.

$sel:methods:UriPathRouteInput', uriPathRouteInput_methods - A list of HTTP methods to match. An empty list matches all values. If a method is present, only HTTP requests using that method are forwarded to this route’s service.

$sel:activationState:UriPathRouteInput', uriPathRouteInput_activationState - If set to ACTIVE, traffic is forwarded to this route’s service after the route is created.

$sel:sourcePath:UriPathRouteInput', uriPathRouteInput_sourcePath - The path to use to match traffic. Paths must start with / and are relative to the base of the application.

UrlEndpointConfig

data UrlEndpointConfig Source #

The configuration for the URL endpoint type.

See: newUrlEndpointConfig smart constructor.

Instances

Instances details
FromJSON UrlEndpointConfig Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.UrlEndpointConfig

Generic UrlEndpointConfig Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.UrlEndpointConfig

Associated Types

type Rep UrlEndpointConfig :: Type -> Type #

Read UrlEndpointConfig Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.UrlEndpointConfig

Show UrlEndpointConfig Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.UrlEndpointConfig

NFData UrlEndpointConfig Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.UrlEndpointConfig

Methods

rnf :: UrlEndpointConfig -> () #

Eq UrlEndpointConfig Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.UrlEndpointConfig

Hashable UrlEndpointConfig Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.UrlEndpointConfig

type Rep UrlEndpointConfig Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.UrlEndpointConfig

type Rep UrlEndpointConfig = D1 ('MetaData "UrlEndpointConfig" "Amazonka.MigrationHubReFactorSpaces.Types.UrlEndpointConfig" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "UrlEndpointConfig'" 'PrefixI 'True) (S1 ('MetaSel ('Just "healthUrl") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "url") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newUrlEndpointConfig :: UrlEndpointConfig Source #

Create a value of UrlEndpointConfig 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:healthUrl:UrlEndpointConfig', urlEndpointConfig_healthUrl - The health check URL of the URL endpoint type.

$sel:url:UrlEndpointConfig', urlEndpointConfig_url - The HTTP URL endpoint.

UrlEndpointInput

data UrlEndpointInput Source #

The configuration for the URL endpoint type.

See: newUrlEndpointInput smart constructor.

Instances

Instances details
FromJSON UrlEndpointInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.UrlEndpointInput

ToJSON UrlEndpointInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.UrlEndpointInput

Generic UrlEndpointInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.UrlEndpointInput

Associated Types

type Rep UrlEndpointInput :: Type -> Type #

Read UrlEndpointInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.UrlEndpointInput

Show UrlEndpointInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.UrlEndpointInput

NFData UrlEndpointInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.UrlEndpointInput

Methods

rnf :: UrlEndpointInput -> () #

Eq UrlEndpointInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.UrlEndpointInput

Hashable UrlEndpointInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.UrlEndpointInput

type Rep UrlEndpointInput Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.UrlEndpointInput

type Rep UrlEndpointInput = D1 ('MetaData "UrlEndpointInput" "Amazonka.MigrationHubReFactorSpaces.Types.UrlEndpointInput" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "UrlEndpointInput'" 'PrefixI 'True) (S1 ('MetaSel ('Just "healthUrl") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "url") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newUrlEndpointInput Source #

Create a value of UrlEndpointInput 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:healthUrl:UrlEndpointInput', urlEndpointInput_healthUrl - The health check URL of the URL endpoint type. If the URL is a public endpoint, the HealthUrl must also be a public endpoint. If the URL is a private endpoint inside a virtual private cloud (VPC), the health URL must also be a private endpoint, and the host must be the same as the URL.

$sel:url:UrlEndpointInput', urlEndpointInput_url - The URL to route traffic to. The URL must be an rfc3986-formatted URL. If the host is a domain name, the name must be resolvable over the public internet. If the scheme is https, the top level domain of the host must be listed in the IANA root zone database.

UrlEndpointSummary

data UrlEndpointSummary Source #

The summary of the configuration for the URL endpoint type.

See: newUrlEndpointSummary smart constructor.

Instances

Instances details
FromJSON UrlEndpointSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.UrlEndpointSummary

Generic UrlEndpointSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.UrlEndpointSummary

Associated Types

type Rep UrlEndpointSummary :: Type -> Type #

Read UrlEndpointSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.UrlEndpointSummary

Show UrlEndpointSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.UrlEndpointSummary

NFData UrlEndpointSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.UrlEndpointSummary

Methods

rnf :: UrlEndpointSummary -> () #

Eq UrlEndpointSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.UrlEndpointSummary

Hashable UrlEndpointSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.UrlEndpointSummary

type Rep UrlEndpointSummary Source # 
Instance details

Defined in Amazonka.MigrationHubReFactorSpaces.Types.UrlEndpointSummary

type Rep UrlEndpointSummary = D1 ('MetaData "UrlEndpointSummary" "Amazonka.MigrationHubReFactorSpaces.Types.UrlEndpointSummary" "amazonka-migration-hub-refactor-spaces-2.0-IgAA0SWWxlS8R7imIzpgpS" 'False) (C1 ('MetaCons "UrlEndpointSummary'" 'PrefixI 'True) (S1 ('MetaSel ('Just "healthUrl") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "url") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newUrlEndpointSummary :: UrlEndpointSummary Source #

Create a value of UrlEndpointSummary 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:healthUrl:UrlEndpointSummary', urlEndpointSummary_healthUrl - The health check URL of the URL endpoint type. If the URL is a public endpoint, the HealthUrl must also be a public endpoint. If the URL is a private endpoint inside a virtual private cloud (VPC), the health URL must also be a private endpoint, and the host must be the same as the URL.

$sel:url:UrlEndpointSummary', urlEndpointSummary_url - The URL to route traffic to. The URL must be an rfc3986-formatted URL. If the host is a domain name, the name must be resolvable over the public internet. If the scheme is https, the top level domain of the host must be listed in the IANA root zone database.