Viewing docs for Defang AWS v2.4.1
published on Saturday, Jul 11, 2026 by Defang
published on Saturday, Jul 11, 2026 by Defang
Viewing docs for Defang AWS v2.4.1
published on Saturday, Jul 11, 2026 by Defang
published on Saturday, Jul 11, 2026 by Defang
Create Redis Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Redis(name: string, args: RedisArgs, opts?: ComponentResourceOptions);@overload
def Redis(resource_name: str,
args: RedisArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Redis(resource_name: str,
opts: Optional[ResourceOptions] = None,
project_name: Optional[str] = None,
aws: Optional[_aws.SharedInfraArgs] = None,
deploy: Optional[_compose.DeployConfigArgs] = None,
environment: Optional[Mapping[str, str]] = None,
image: Optional[str] = None,
ports: Optional[Sequence[_compose.ServicePortConfigArgs]] = None,
redis: Optional[_compose.RedisConfigArgs] = None)func NewRedis(ctx *Context, name string, args RedisArgs, opts ...ResourceOption) (*Redis, error)public Redis(string name, RedisArgs args, ComponentResourceOptions? opts = null)type: defang-aws:Redis
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "defang-aws_redis" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args RedisArgs
- The arguments to resource properties.
- opts ComponentResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args RedisArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args RedisArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RedisArgs
- The arguments to resource properties.
- opts ComponentResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RedisArgs
- The arguments to resource properties.
- options ComponentResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var redisResource = new DefangAws.Redis("redisResource", new()
{
ProjectName = "string",
Aws = new DefangAws.Aws.Inputs.SharedInfraArgs
{
VpcID = "string",
ClusterArn = "string",
ExecutionRoleArn = "string",
LogGroupName = "string",
PrivateSgID = "string",
PrivateSubnetIDs = new[]
{
"string",
},
PrivateZoneID = "string",
PublicSubnetIDs = new[]
{
"string",
},
},
Deploy = new DefangAws.Compose.Inputs.DeployConfigArgs
{
Replicas = 0,
Resources = new DefangAws.Compose.Inputs.ResourcesArgs
{
Reservations = new DefangAws.Compose.Inputs.ResourceConfigArgs
{
Cpus = 0,
Memory = "string",
},
},
},
Environment =
{
{ "string", "string" },
},
Image = "string",
Ports = new[]
{
new DefangAws.Compose.Inputs.ServicePortConfigArgs
{
Target = 0,
AppProtocol = "string",
Listener = "string",
Mode = "string",
Protocol = "string",
},
},
Redis = new DefangAws.Compose.Inputs.RedisConfigArgs
{
AllowDowntime = false,
FromSnapshot = "string",
},
});
example, err := defangaws.NewRedis(ctx, "redisResource", &defangaws.RedisArgs{
ProjectName: "string",
Aws: &aws.SharedInfraArgs{
VpcID: pulumi.String("string"),
ClusterArn: pulumi.String("string"),
ExecutionRoleArn: pulumi.String("string"),
LogGroupName: pulumi.String("string"),
PrivateSgID: pulumi.String("string"),
PrivateSubnetIDs: pulumi.StringArray{
pulumi.String("string"),
},
PrivateZoneID: pulumi.String("string"),
PublicSubnetIDs: pulumi.StringArray{
pulumi.String("string"),
},
},
Deploy: &compose.DeployConfigArgs{
Replicas: pulumi.Int(0),
Resources: &compose.ResourcesArgs{
Reservations: &compose.ResourceConfigArgs{
Cpus: pulumi.Float64(0),
Memory: pulumi.String("string"),
},
},
},
Environment: pulumi.StringMap{
"string": pulumi.String("string"),
},
Image: "string",
Ports: compose.ServicePortConfigArray{
&compose.ServicePortConfigArgs{
Target: pulumi.Int(0),
AppProtocol: pulumi.String("string"),
Listener: pulumi.String("string"),
Mode: pulumi.String("string"),
Protocol: pulumi.String("string"),
},
},
Redis: &compose.RedisConfigArgs{
AllowDowntime: pulumi.Bool(false),
FromSnapshot: pulumi.String("string"),
},
})
resource "defang-aws_redis" "redisResource" {
project_name = "string"
aws = {
vpc_id = "string"
cluster_arn = "string"
execution_role_arn = "string"
log_group_name = "string"
private_sg_id = "string"
private_subnet_i_ds = ["string"]
private_zone_id = "string"
public_subnet_i_ds = ["string"]
}
deploy = {
replicas = 0
resources = {
reservations = {
cpus = 0
memory = "string"
}
}
}
environment = {
"string" = "string"
}
image = "string"
ports {
target = 0
app_protocol = "string"
listener = "string"
mode = "string"
protocol = "string"
}
redis = {
allow_downtime = false
from_snapshot = "string"
}
}
var redisResource = new Redis("redisResource", RedisArgs.builder()
.projectName("string")
.aws(SharedInfraArgs.builder()
.vpcID("string")
.clusterArn("string")
.executionRoleArn("string")
.logGroupName("string")
.privateSgID("string")
.privateSubnetIDs("string")
.privateZoneID("string")
.publicSubnetIDs("string")
.build())
.deploy(DeployConfigArgs.builder()
.replicas(0)
.resources(ResourcesArgs.builder()
.reservations(ResourceConfigArgs.builder()
.cpus(0.0)
.memory("string")
.build())
.build())
.build())
.environment(Map.of("string", "string"))
.image("string")
.ports(ServicePortConfigArgs.builder()
.target(0)
.appProtocol("string")
.listener("string")
.mode("string")
.protocol("string")
.build())
.redis(RedisConfigArgs.builder()
.allowDowntime(false)
.fromSnapshot("string")
.build())
.build());
redis_resource = defang_aws.Redis("redisResource",
project_name="string",
aws={
"vpc_id": "string",
"cluster_arn": "string",
"execution_role_arn": "string",
"log_group_name": "string",
"private_sg_id": "string",
"private_subnet_ids": ["string"],
"private_zone_id": "string",
"public_subnet_ids": ["string"],
},
deploy={
"replicas": 0,
"resources": {
"reservations": {
"cpus": float(0),
"memory": "string",
},
},
},
environment={
"string": "string",
},
image="string",
ports=[{
"target": 0,
"app_protocol": "string",
"listener": "string",
"mode": "string",
"protocol": "string",
}],
redis={
"allow_downtime": False,
"from_snapshot": "string",
})
const redisResource = new defang_aws.Redis("redisResource", {
projectName: "string",
aws: {
vpcID: "string",
clusterArn: "string",
executionRoleArn: "string",
logGroupName: "string",
privateSgID: "string",
privateSubnetIDs: ["string"],
privateZoneID: "string",
publicSubnetIDs: ["string"],
},
deploy: {
replicas: 0,
resources: {
reservations: {
cpus: 0,
memory: "string",
},
},
},
environment: {
string: "string",
},
image: "string",
ports: [{
target: 0,
appProtocol: "string",
listener: "string",
mode: "string",
protocol: "string",
}],
redis: {
allowDowntime: false,
fromSnapshot: "string",
},
});
type: defang-aws:Redis
properties:
aws:
clusterArn: string
executionRoleArn: string
logGroupName: string
privateSgID: string
privateSubnetIDs:
- string
privateZoneID: string
publicSubnetIDs:
- string
vpcID: string
deploy:
replicas: 0
resources:
reservations:
cpus: 0
memory: string
environment:
string: string
image: string
ports:
- appProtocol: string
listener: string
mode: string
protocol: string
target: 0
projectName: string
redis:
allowDowntime: false
fromSnapshot: string
Redis Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Redis resource accepts the following input properties:
- Project
Name string - Aws
Shared
Infra Args - Deploy
Deploy
Config Args - Environment map[string]string
- Image string
- Ports
Service
Port Config Args - Redis
Redis
Config Args
- project_
name string - aws object
- deploy object
- environment map(string)
- image string
- ports list(object)
- redis object
- project
Name String - aws
Shared
Infra - deploy
Deploy
Config - environment Map<String,String>
- image String
- ports
List<Service
Port Config> - redis
Redis
Config
- project
Name string - aws
aws
Shared Infra - deploy
compose
Deploy Config - environment {[key: string]: string}
- image string
- ports
compose
Service Port Config[] - redis
compose
Redis Config
- project
Name String - aws Property Map
- deploy Property Map
- environment Map<String>
- image String
- ports List<Property Map>
- redis Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the Redis resource produces the following output properties:
- Endpoint string
- Endpoint string
- endpoint string
- endpoint String
- endpoint string
- endpoint str
- endpoint String
Supporting Types
DeployConfig, DeployConfigArgs
- replicas Number
- resources Property Map
RedisConfig, RedisConfigArgs
- Allow
Downtime bool - From
Snapshot string
- Allow
Downtime bool - From
Snapshot string
- allow_
downtime bool - from_
snapshot string
- allow
Downtime Boolean - from
Snapshot String
- allow
Downtime boolean - from
Snapshot string
- allow_
downtime bool - from_
snapshot str
- allow
Downtime Boolean - from
Snapshot String
ResourceConfig, ResourceConfigArgs
Resources, ResourcesArgs
ServicePortConfig, ServicePortConfigArgs
- Target int
- App
Protocol string - Listener string
- Mode string
- Protocol string
- Target int
- App
Protocol string - Listener string
- Mode string
- Protocol string
- target number
- app_
protocol string - listener string
- mode string
- protocol string
- target Integer
- app
Protocol String - listener String
- mode String
- protocol String
- target number
- app
Protocol string - listener string
- mode string
- protocol string
- target int
- app_
protocol str - listener str
- mode str
- protocol str
- target Number
- app
Protocol String - listener String
- mode String
- protocol String
SharedInfra, SharedInfraArgs
- Vpc
ID string - Cluster
Arn string - Execution
Role stringArn - Log
Group stringName - Private
Sg stringID - Private
Subnet List<string>IDs - Private
Zone stringID - Public
Subnet List<string>IDs
- Vpc
ID string - Cluster
Arn string - Execution
Role stringArn - Log
Group stringName - Private
Sg stringID - Private
Subnet []stringIDs - Private
Zone stringID - Public
Subnet []stringIDs
- vpc_
id string - cluster_
arn string - execution_
role_ stringarn - log_
group_ stringname - private_
sg_ stringid - private_
subnet_ list(string)i_ ds - private_
zone_ stringid - public_
subnet_ list(string)i_ ds
- vpc
ID String - cluster
Arn String - execution
Role StringArn - log
Group StringName - private
Sg StringID - private
Subnet List<String>IDs - private
Zone StringID - public
Subnet List<String>IDs
- vpc
ID string - cluster
Arn string - execution
Role stringArn - log
Group stringName - private
Sg stringID - private
Subnet string[]IDs - private
Zone stringID - public
Subnet string[]IDs
- vpc_
id str - cluster_
arn str - execution_
role_ strarn - log_
group_ strname - private_
sg_ strid - private_
subnet_ Sequence[str]ids - private_
zone_ strid - public_
subnet_ Sequence[str]ids
- vpc
ID String - cluster
Arn String - execution
Role StringArn - log
Group StringName - private
Sg StringID - private
Subnet List<String>IDs - private
Zone StringID - public
Subnet List<String>IDs
Package Details
- Repository
- defang-aws DefangLabs/pulumi-defang
- License
- Apache-2.0
Viewing docs for Defang AWS v2.4.1
published on Saturday, Jul 11, 2026 by Defang
published on Saturday, Jul 11, 2026 by Defang