amazonka-apprunner-2.0: Amazon App Runner 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.AppRunner.Types.VpcConnector

Description

 
Synopsis

Documentation

data VpcConnector Source #

Describes an App Runner VPC connector resource. A VPC connector describes the Amazon Virtual Private Cloud (Amazon VPC) that an App Runner service is associated with, and the subnets and security group that are used.

Multiple revisions of a connector might have the same Name and different Revision values.

At this time, App Runner supports only one revision per name.

See: newVpcConnector smart constructor.

Constructors

VpcConnector' 

Fields

  • createdAt :: Maybe POSIX

    The time when the VPC connector was created. It's in Unix time stamp format.

  • deletedAt :: Maybe POSIX

    The time when the VPC connector was deleted. It's in Unix time stamp format.

  • securityGroups :: Maybe [Text]

    A list of IDs of security groups that App Runner uses for access to Amazon Web Services resources under the specified subnets. If not specified, App Runner uses the default security group of the Amazon VPC. The default security group allows all outbound traffic.

  • status :: Maybe VpcConnectorStatus

    The current state of the VPC connector. If the status of a connector revision is INACTIVE, it was deleted and can't be used. Inactive connector revisions are permanently removed some time after they are deleted.

  • subnets :: Maybe [Text]

    A list of IDs of subnets that App Runner uses for your service. All IDs are of subnets of a single Amazon VPC.

  • vpcConnectorArn :: Maybe Text

    The Amazon Resource Name (ARN) of this VPC connector.

  • vpcConnectorName :: Maybe Text

    The customer-provided VPC connector name.

  • vpcConnectorRevision :: Maybe Int

    The revision of this VPC connector. It's unique among all the active connectors ("Status": "ACTIVE") that share the same Name.

    At this time, App Runner supports only one revision per name.

Instances

Instances details
FromJSON VpcConnector Source # 
Instance details

Defined in Amazonka.AppRunner.Types.VpcConnector

Generic VpcConnector Source # 
Instance details

Defined in Amazonka.AppRunner.Types.VpcConnector

Associated Types

type Rep VpcConnector :: Type -> Type #

Read VpcConnector Source # 
Instance details

Defined in Amazonka.AppRunner.Types.VpcConnector

Show VpcConnector Source # 
Instance details

Defined in Amazonka.AppRunner.Types.VpcConnector

NFData VpcConnector Source # 
Instance details

Defined in Amazonka.AppRunner.Types.VpcConnector

Methods

rnf :: VpcConnector -> () #

Eq VpcConnector Source # 
Instance details

Defined in Amazonka.AppRunner.Types.VpcConnector

Hashable VpcConnector Source # 
Instance details

Defined in Amazonka.AppRunner.Types.VpcConnector

type Rep VpcConnector Source # 
Instance details

Defined in Amazonka.AppRunner.Types.VpcConnector

newVpcConnector :: VpcConnector Source #

Create a value of VpcConnector 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:createdAt:VpcConnector', vpcConnector_createdAt - The time when the VPC connector was created. It's in Unix time stamp format.

$sel:deletedAt:VpcConnector', vpcConnector_deletedAt - The time when the VPC connector was deleted. It's in Unix time stamp format.

$sel:securityGroups:VpcConnector', vpcConnector_securityGroups - A list of IDs of security groups that App Runner uses for access to Amazon Web Services resources under the specified subnets. If not specified, App Runner uses the default security group of the Amazon VPC. The default security group allows all outbound traffic.

$sel:status:VpcConnector', vpcConnector_status - The current state of the VPC connector. If the status of a connector revision is INACTIVE, it was deleted and can't be used. Inactive connector revisions are permanently removed some time after they are deleted.

$sel:subnets:VpcConnector', vpcConnector_subnets - A list of IDs of subnets that App Runner uses for your service. All IDs are of subnets of a single Amazon VPC.

$sel:vpcConnectorArn:VpcConnector', vpcConnector_vpcConnectorArn - The Amazon Resource Name (ARN) of this VPC connector.

$sel:vpcConnectorName:VpcConnector', vpcConnector_vpcConnectorName - The customer-provided VPC connector name.

$sel:vpcConnectorRevision:VpcConnector', vpcConnector_vpcConnectorRevision - The revision of this VPC connector. It's unique among all the active connectors ("Status": "ACTIVE") that share the same Name.

At this time, App Runner supports only one revision per name.

vpcConnector_createdAt :: Lens' VpcConnector (Maybe UTCTime) Source #

The time when the VPC connector was created. It's in Unix time stamp format.

vpcConnector_deletedAt :: Lens' VpcConnector (Maybe UTCTime) Source #

The time when the VPC connector was deleted. It's in Unix time stamp format.

vpcConnector_securityGroups :: Lens' VpcConnector (Maybe [Text]) Source #

A list of IDs of security groups that App Runner uses for access to Amazon Web Services resources under the specified subnets. If not specified, App Runner uses the default security group of the Amazon VPC. The default security group allows all outbound traffic.

vpcConnector_status :: Lens' VpcConnector (Maybe VpcConnectorStatus) Source #

The current state of the VPC connector. If the status of a connector revision is INACTIVE, it was deleted and can't be used. Inactive connector revisions are permanently removed some time after they are deleted.

vpcConnector_subnets :: Lens' VpcConnector (Maybe [Text]) Source #

A list of IDs of subnets that App Runner uses for your service. All IDs are of subnets of a single Amazon VPC.

vpcConnector_vpcConnectorArn :: Lens' VpcConnector (Maybe Text) Source #

The Amazon Resource Name (ARN) of this VPC connector.

vpcConnector_vpcConnectorName :: Lens' VpcConnector (Maybe Text) Source #

The customer-provided VPC connector name.

vpcConnector_vpcConnectorRevision :: Lens' VpcConnector (Maybe Int) Source #

The revision of this VPC connector. It's unique among all the active connectors ("Status": "ACTIVE") that share the same Name.

At this time, App Runner supports only one revision per name.