Documentation
¶
Index ¶
Constants ¶
View Source
const ( StateAvailable = string(ec2Types.StateAvailable) StateDeleting = string(ec2Types.StateDeleting) StateDeleted = string(ec2Types.StateDeleted) )
View Source
const ( S3 = "s3" SecretData = "secretdata" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client interface {
Create(ctx context.Context, input CreateVpcEndpointInput) (CreateVpcEndpointOutput, error)
Get(ctx context.Context, input GetVpcEndpointInput) (GetVpcEndpointOutput, error)
Update(ctx context.Context, input UpdateVpcEndpointInput) error
Delete(ctx context.Context, input DeleteVpcEndpointInput) error
}
type CreateVpcEndpointInput ¶
type CreateVpcEndpointInput struct {
RoleARN string
Region string
ServiceName string
Tags map[string]string
Type ec2Types.VpcEndpointType
VpcId string
VPCEndpointGatewayConfig *VPCEndpointGatewayConfig
}
type CreateVpcEndpointOutput ¶
type DeleteVpcEndpointInput ¶
type GetVpcEndpointInput ¶
type GetVpcEndpointOutput ¶
type GetVpcEndpointOutput struct {
VpcEndpointId string
VpcEndpointState string
Type ec2Types.VpcEndpointType
VPCEndpointGatewayConfig *VPCEndpointGatewayConfig
}
type Reconciler ¶
type Reconciler interface {
Reconcile(ctx context.Context, request aws.ReconcileRequest[Spec]) (aws.ReconcileResult[Status], error)
ReconcileDelete(ctx context.Context, request aws.ReconcileRequest[aws.DeletedCloudResourceSpec]) error
}
func NewReconciler ¶
func NewReconciler(client Client) (Reconciler, error)
type UpdateVpcEndpointInput ¶
type UpdateVpcEndpointInput struct {
RoleARN string
Region string
Type ec2Types.VpcEndpointType
ServiceName string
VpcEndpointId string
VPCEndpointGatewayConfig *VPCEndpointGatewayUpdateConfig
Tags map[string]string
}
type VPCEndpointGatewayConfig ¶ added in v0.5.0
type VPCEndpointGatewayConfig struct {
RouteTableIDs []string
}
type VPCEndpointGatewayUpdateConfig ¶ added in v0.5.0
Click to show internal directories.
Click to hide internal directories.