2.74.0 • Published 8 months ago

@aws-solutions-constructs/aws-fargate-dynamodb v2.74.0

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
8 months ago

aws-fargate-dynamodb module


Stability: Experimental

All classes are under active development and subject to non-backward compatible changes or removal in any future version. These are not subject to the Semantic Versioning model. This means that while you may use them, you may need to update your source code when upgrading to a newer version of this package.


Reference Documentation:https://docs.aws.amazon.com/solutions/latest/constructs/
LanguagePackage
Python Logo Pythonaws_solutions_constructs.aws_fargate_dynamodb
Typescript Logo Typescript@aws-solutions-constructs/aws-fargate-dynamodb
Java Logo Javasoftware.amazon.awsconstructs.services.fargatedynamodb

Overview

This AWS Solutions Construct implements an AWS Fargate service that can write/read to an Amazon DynamoDB table

Here is a minimal deployable pattern definition:

Typescript

import { Construct } from 'constructs';
import { Stack, StackProps } from 'aws-cdk-lib';
import { FargateToDynamoDB, FargateToDynamoDBProps } from '@aws-solutions-constructs/aws-fargate-dynamodb';

const constructProps: FargateToDynamoDBProps = {
  publicApi: true,
  ecrRepositoryArn: "arn:aws:ecr:us-east-1:123456789012:repository/your-ecr-repo",
};

new FargateToDynamoDB(stack, 'test-construct', constructProps);

Python

from aws_solutions_constructs.aws_fargate_dynamodb import FargateToDynamoDB, FargateToDynamoDBProps
from aws_cdk import (
    Stack
)
from constructs import Construct

FargateToDynamoDB(self, 'test_construct',
            public_api=True,
            ecr_repository_arn="arn:aws:ecr:us-east-1:123456789012:repository/your-ecr-repo")

Java

import software.constructs.Construct;

import software.amazon.awscdk.Stack;
import software.amazon.awscdk.StackProps;
import software.amazon.awsconstructs.services.fargatedynamodb.*;

new FargateToDynamoDB(this, "test-construct", new FargateToDynamoDBProps.Builder()
        .publicApi(true)
        .ecrRepositoryArn("arn:aws:ecr:us-east-1:123456789012:repository/your-ecr-repo")
        .build());

Pattern Construct Props

NameTypeDescription
publicApibooleanWhether the construct is deploying a private or public API. This has implications for the VPC.
vpcProps?ec2.VpcPropsOptional custom properties for a VPC the construct will create. This VPC will be used by any Private Hosted Zone the construct creates (that's why loadBalancerProps and privateHostedZoneProps can't include a VPC). Providing both this and existingVpc is an error.
existingVpc?ec2.IVpcAn existing VPC in which to deploy the construct. Providing both this and vpcProps is an error. If the client provides an existing load balancer and/or existing Private Hosted Zone, those constructs must exist in this VPC.
clusterProps?ecs.ClusterPropsOptional properties to create a new ECS cluster. To provide an existing cluster, use the cluster attribute of fargateServiceProps.
ecrRepositoryArn?stringThe arn of an ECR Repository containing the image to use to generate the containers. Either this or the image property of containerDefinitionProps must be provided. format: arn:aws:ecr:region:account number:repository/Repository Name
ecrImageVersion?stringThe version of the image to use from the repository. Defaults to 'Latest'
containerDefinitionProps?ecs.ContainerDefinitionProps \| anyOptional props to define the container created for the Fargate Service (defaults found in fargate-defaults.ts)
fargateTaskDefinitionProps?ecs.FargateTaskDefinitionProps \| anyOptional props to define the Fargate Task Definition for this construct (defaults found in fargate-defaults.ts)
fargateServiceProps?ecs.FargateServiceProps \| anyOptional values to override default Fargate Task definition properties (fargate-defaults.ts). The construct will default to launching the service is the most isolated subnets available (precedence: Isolated, Private and Public). Override those and other defaults here.
existingFargateServiceObject?ecs.FargateServiceA Fargate Service already instantiated (probably by another Solutions Construct). If this is specified, then no props defining a new service can be provided, including: ecrImageVersion, containerDefinitionProps, fargateTaskDefinitionProps, ecrRepositoryArn, fargateServiceProps, clusterProps
existingContainerDefinitionObject?ecs.ContainerDefinitionA container definition already instantiated as part of a Fargate service. This must be the container in the existingFargateServiceObject
dynamoTableProps?dynamodb.TablePropsOptional user provided props to override the default props for DynamoDB Table.
existingTableInterface?dynamodb.ITableExisting instance of DynamoDB table object or interface, providing both this and dynamoTableProps will cause an error.
tablePermissions?stringOptional table permissions to grant to the Fargate service. One of the following may be specified: All, Read, ReadWrite, Write.
tableArnEnvironmentVariableName?stringOptional Name for the container environment variable set to the ARN for the DynamoDB table. Default: DYNAMODB_TABLE_ARN
tableEnvironmentVariableName?stringOptional Name for the container environment variable set to the DynamoDB table name. Default: DYNAMODB_TABLE_NAME

Pattern Properties

NameTypeDescription
vpcec2.IVpcThe VPC used by the construct (whether created by the construct or provided by the client)
serviceecs.FargateServiceThe AWS Fargate service used by this construct (whether created by this construct or passed to this construct at initialization)
containerecs.ContainerDefinitionThe container associated with the AWS Fargate service in the service property.
dynamoTableInterfacedynamodb.ITableReturns an instance of dynamodb.ITable created by the construct or the interface provided in existingTableInterface.
dynamoTable?dynamodb.TableReturns an instance of dynamodb.Table created by the construct. IMPORTANT: If existingTableInterface was provided in Pattern Construct Props, this property will be undefined.

Default settings

Out of the box implementation of the Construct without any override will set the following defaults:

AWS Fargate Service

  • Sets up an AWS Fargate service
    • Uses the existing service if provided
    • Creates a new service if none provided.
      • Service will run in isolated subnets if available, then private subnets if available and finally public subnets
    • Adds environment variables to the container with the ARN and Name of the DynamoDB table
    • Add permissions to the container IAM role allowing it to publish to the DynamoDB table

Amazon DynamoDB Table

  • Sets up an Amazon DynamoDB table
    • Uses an existing table if one is provided, otherwise creates a new one
  • Adds an Interface Endpoint to the VPC for DynamoDB (the service by default runs in Isolated or Private subnets)

Architecture

Architecture Diagram


© Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.

2.74.0

8 months ago

2.73.0

8 months ago

2.72.0

8 months ago

2.71.0

9 months ago

2.69.0

9 months ago

2.68.0

10 months ago

2.67.0

10 months ago

2.67.1

10 months ago

2.70.0

9 months ago

2.64.0

11 months ago

2.60.0

1 year ago

2.63.0

11 months ago

2.59.0

1 year ago

2.62.0

11 months ago

2.58.0

1 year ago

2.58.1

1 year ago

2.65.0

10 months ago

2.61.0

11 months ago

2.57.0

1 year ago

2.56.0

1 year ago

2.55.0

1 year ago

2.54.1

1 year ago

2.54.0

1 year ago

2.53.0

1 year ago

2.52.1

1 year ago

2.52.0

1 year ago

2.51.0

1 year ago

2.50.0

1 year ago

2.49.0

1 year ago

2.48.0

1 year ago

2.47.0

2 years ago

2.46.0

2 years ago

2.43.0

2 years ago

2.45.0

2 years ago

2.43.1

2 years ago

2.42.0

2 years ago

2.44.0

2 years ago

2.41.0

2 years ago

2.40.0

2 years ago

2.38.0

2 years ago

2.39.0

2 years ago

2.37.0

2 years ago

2.32.0

2 years ago

2.34.0

2 years ago

2.36.0

2 years ago

2.31.0

2 years ago

2.33.0

2 years ago

2.35.0

2 years ago

2.30.0

2 years ago

2.29.0

3 years ago

1.181.0

3 years ago

2.27.0

3 years ago

1.181.1

3 years ago

1.174.0

3 years ago

1.178.0

3 years ago

1.176.0

3 years ago

2.28.0

3 years ago

1.180.0

3 years ago

2.26.0

3 years ago

1.177.0

3 years ago

1.175.0

3 years ago

1.179.0

3 years ago

2.25.0

3 years ago

1.168.0

3 years ago

2.19.0

3 years ago

2.17.0

3 years ago

1.170.0

3 years ago

1.172.0

3 years ago

2.20.0

3 years ago

1.170.1

3 years ago

2.22.0

3 years ago

2.24.0

3 years ago

1.167.0

3 years ago

1.169.0

3 years ago

2.18.0

3 years ago

2.16.0

3 years ago

2.21.0

3 years ago

1.173.0

3 years ago

2.23.0

3 years ago

1.171.0

3 years ago

1.163.0

3 years ago

2.11.0

3 years ago

1.162.0

3 years ago

2.12.0

3 years ago

1.161.0

3 years ago

1.160.0

3 years ago

2.10.0

3 years ago

1.166.1

3 years ago

1.165.0

3 years ago

1.163.2

3 years ago

2.9.0

3 years ago

1.164.0

3 years ago

1.163.1

3 years ago

2.13.0

3 years ago

2.14.0

3 years ago

1.157.0

3 years ago

1.158.0

3 years ago

1.159.0

3 years ago

1.153.0

3 years ago

1.154.0

3 years ago

1.153.1

3 years ago

1.155.0

3 years ago

1.156.0

3 years ago

2.7.0

3 years ago

2.6.0

3 years ago

2.8.0

3 years ago

1.156.1

3 years ago

1.152.0

3 years ago

1.151.0

3 years ago

1.150.0

3 years ago