aws.rds.getEngineVersion
Explore with Pulumi AI
Information about an RDS engine version.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const test = aws.rds.getEngineVersion({
engine: "mysql",
preferredVersions: [
"8.0.27",
"8.0.26",
],
});
import pulumi
import pulumi_aws as aws
test = aws.rds.get_engine_version(engine="mysql",
preferred_versions=[
"8.0.27",
"8.0.26",
])
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/rds"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := rds.GetEngineVersion(ctx, &rds.GetEngineVersionArgs{
Engine: "mysql",
PreferredVersions: []string{
"8.0.27",
"8.0.26",
},
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var test = Aws.Rds.GetEngineVersion.Invoke(new()
{
Engine = "mysql",
PreferredVersions = new[]
{
"8.0.27",
"8.0.26",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.rds.RdsFunctions;
import com.pulumi.aws.rds.inputs.GetEngineVersionArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var test = RdsFunctions.getEngineVersion(GetEngineVersionArgs.builder()
.engine("mysql")
.preferredVersions(
"8.0.27",
"8.0.26")
.build());
}
}
variables:
test:
fn::invoke:
Function: aws:rds:getEngineVersion
Arguments:
engine: mysql
preferredVersions:
- 8.0.27
- 8.0.26
With filter
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const test = aws.rds.getEngineVersion({
engine: "aurora-postgresql",
version: "10.14",
includeAll: true,
filters: [{
name: "engine-mode",
values: ["serverless"],
}],
});
import pulumi
import pulumi_aws as aws
test = aws.rds.get_engine_version(engine="aurora-postgresql",
version="10.14",
include_all=True,
filters=[{
"name": "engine-mode",
"values": ["serverless"],
}])
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/rds"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := rds.GetEngineVersion(ctx, &rds.GetEngineVersionArgs{
Engine: "aurora-postgresql",
Version: pulumi.StringRef("10.14"),
IncludeAll: pulumi.BoolRef(true),
Filters: []rds.GetEngineVersionFilter{
{
Name: "engine-mode",
Values: []string{
"serverless",
},
},
},
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var test = Aws.Rds.GetEngineVersion.Invoke(new()
{
Engine = "aurora-postgresql",
Version = "10.14",
IncludeAll = true,
Filters = new[]
{
new Aws.Rds.Inputs.GetEngineVersionFilterInputArgs
{
Name = "engine-mode",
Values = new[]
{
"serverless",
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.rds.RdsFunctions;
import com.pulumi.aws.rds.inputs.GetEngineVersionArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var test = RdsFunctions.getEngineVersion(GetEngineVersionArgs.builder()
.engine("aurora-postgresql")
.version("10.14")
.includeAll(true)
.filters(GetEngineVersionFilterArgs.builder()
.name("engine-mode")
.values("serverless")
.build())
.build());
}
}
variables:
test:
fn::invoke:
Function: aws:rds:getEngineVersion
Arguments:
engine: aurora-postgresql
version: '10.14'
includeAll: true
filters:
- name: engine-mode
values:
- serverless
Using getEngineVersion
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getEngineVersion(args: GetEngineVersionArgs, opts?: InvokeOptions): Promise<GetEngineVersionResult>
function getEngineVersionOutput(args: GetEngineVersionOutputArgs, opts?: InvokeOptions): Output<GetEngineVersionResult>
def get_engine_version(default_only: Optional[bool] = None,
engine: Optional[str] = None,
filters: Optional[Sequence[GetEngineVersionFilter]] = None,
has_major_target: Optional[bool] = None,
has_minor_target: Optional[bool] = None,
include_all: Optional[bool] = None,
latest: Optional[bool] = None,
parameter_group_family: Optional[str] = None,
preferred_major_targets: Optional[Sequence[str]] = None,
preferred_upgrade_targets: Optional[Sequence[str]] = None,
preferred_versions: Optional[Sequence[str]] = None,
version: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetEngineVersionResult
def get_engine_version_output(default_only: Optional[pulumi.Input[bool]] = None,
engine: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetEngineVersionFilterArgs]]]] = None,
has_major_target: Optional[pulumi.Input[bool]] = None,
has_minor_target: Optional[pulumi.Input[bool]] = None,
include_all: Optional[pulumi.Input[bool]] = None,
latest: Optional[pulumi.Input[bool]] = None,
parameter_group_family: Optional[pulumi.Input[str]] = None,
preferred_major_targets: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
preferred_upgrade_targets: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
preferred_versions: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
version: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetEngineVersionResult]
func GetEngineVersion(ctx *Context, args *GetEngineVersionArgs, opts ...InvokeOption) (*GetEngineVersionResult, error)
func GetEngineVersionOutput(ctx *Context, args *GetEngineVersionOutputArgs, opts ...InvokeOption) GetEngineVersionResultOutput
> Note: This function is named GetEngineVersion
in the Go SDK.
public static class GetEngineVersion
{
public static Task<GetEngineVersionResult> InvokeAsync(GetEngineVersionArgs args, InvokeOptions? opts = null)
public static Output<GetEngineVersionResult> Invoke(GetEngineVersionInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetEngineVersionResult> getEngineVersion(GetEngineVersionArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: aws:rds/getEngineVersion:getEngineVersion
arguments:
# arguments dictionary
The following arguments are supported:
- Engine string
Database engine. Engine values include
aurora
,aurora-mysql
,aurora-postgresql
,docdb
,mariadb
,mysql
,neptune
,oracle-ee
,oracle-se
,oracle-se1
,oracle-se2
,postgres
,sqlserver-ee
,sqlserver-ex
,sqlserver-se
, andsqlserver-web
.The following arguments are optional:
- Default
Only bool - Whether the engine version must be an AWS-defined default version. Some engines have multiple default versions, such as for each major version. Using
default_only
may help avoidmultiple RDS engine versions
errors. See alsolatest
. - Filters
List<Get
Engine Version Filter> - One or more name/value pairs to use in filtering versions. There are several valid keys; for a full reference, check out describe-db-engine-versions in the AWS CLI reference.
- Has
Major boolTarget - Whether the engine version must have one or more major upgrade targets. Not including
has_major_target
or setting it tofalse
doesn't imply that there's no corresponding major upgrade target for the engine version. - Has
Minor boolTarget - Whether the engine version must have one or more minor upgrade targets. Not including
has_minor_target
or setting it tofalse
doesn't imply that there's no corresponding minor upgrade target for the engine version. - Include
All bool - Whether the engine version
status
can either bedeprecated
oravailable
. When not set or set tofalse
, the engine versionstatus
will always beavailable
. - Latest bool
- Whether the engine version is the most recent version matching the other criteria. This is different from
default_only
in important ways: "default" relies on AWS-defined defaults, the latest version isn't always the default, and AWS might have multiple default versions for an engine. As a result,default_only
might not prevent errors frommultiple RDS engine versions
, whilelatest
will. (latest
can be used withdefault_only
.) Note: The data source uses a best-effort approach at selecting the latest version. Due to the complexity of version identifiers across engines and incomplete version date information provided by AWS, usinglatest
may not always result in the engine version being the actual latest version. - Parameter
Group stringFamily - Name of a specific database parameter group family. Examples of parameter group families are
mysql8.0
,mariadb10.4
, andpostgres12
. - Preferred
Major List<string>Targets - Ordered list of preferred major version upgrade targets. The engine version will be the first match in the list unless the
latest
parameter is set totrue
. The engine version will be the default version if you don't include any criteria, such aspreferred_major_targets
. - Preferred
Upgrade List<string>Targets - Ordered list of preferred version upgrade targets. The engine version will be the first match in this list unless the
latest
parameter is set totrue
. The engine version will be the default version if you don't include any criteria, such aspreferred_upgrade_targets
. - Preferred
Versions List<string> - Ordered list of preferred versions. The engine version will be the first match in this list unless the
latest
parameter is set totrue
. The engine version will be the default version if you don't include any criteria, such aspreferred_versions
. - Version string
- Engine string
Database engine. Engine values include
aurora
,aurora-mysql
,aurora-postgresql
,docdb
,mariadb
,mysql
,neptune
,oracle-ee
,oracle-se
,oracle-se1
,oracle-se2
,postgres
,sqlserver-ee
,sqlserver-ex
,sqlserver-se
, andsqlserver-web
.The following arguments are optional:
- Default
Only bool - Whether the engine version must be an AWS-defined default version. Some engines have multiple default versions, such as for each major version. Using
default_only
may help avoidmultiple RDS engine versions
errors. See alsolatest
. - Filters
[]Get
Engine Version Filter - One or more name/value pairs to use in filtering versions. There are several valid keys; for a full reference, check out describe-db-engine-versions in the AWS CLI reference.
- Has
Major boolTarget - Whether the engine version must have one or more major upgrade targets. Not including
has_major_target
or setting it tofalse
doesn't imply that there's no corresponding major upgrade target for the engine version. - Has
Minor boolTarget - Whether the engine version must have one or more minor upgrade targets. Not including
has_minor_target
or setting it tofalse
doesn't imply that there's no corresponding minor upgrade target for the engine version. - Include
All bool - Whether the engine version
status
can either bedeprecated
oravailable
. When not set or set tofalse
, the engine versionstatus
will always beavailable
. - Latest bool
- Whether the engine version is the most recent version matching the other criteria. This is different from
default_only
in important ways: "default" relies on AWS-defined defaults, the latest version isn't always the default, and AWS might have multiple default versions for an engine. As a result,default_only
might not prevent errors frommultiple RDS engine versions
, whilelatest
will. (latest
can be used withdefault_only
.) Note: The data source uses a best-effort approach at selecting the latest version. Due to the complexity of version identifiers across engines and incomplete version date information provided by AWS, usinglatest
may not always result in the engine version being the actual latest version. - Parameter
Group stringFamily - Name of a specific database parameter group family. Examples of parameter group families are
mysql8.0
,mariadb10.4
, andpostgres12
. - Preferred
Major []stringTargets - Ordered list of preferred major version upgrade targets. The engine version will be the first match in the list unless the
latest
parameter is set totrue
. The engine version will be the default version if you don't include any criteria, such aspreferred_major_targets
. - Preferred
Upgrade []stringTargets - Ordered list of preferred version upgrade targets. The engine version will be the first match in this list unless the
latest
parameter is set totrue
. The engine version will be the default version if you don't include any criteria, such aspreferred_upgrade_targets
. - Preferred
Versions []string - Ordered list of preferred versions. The engine version will be the first match in this list unless the
latest
parameter is set totrue
. The engine version will be the default version if you don't include any criteria, such aspreferred_versions
. - Version string
- engine String
Database engine. Engine values include
aurora
,aurora-mysql
,aurora-postgresql
,docdb
,mariadb
,mysql
,neptune
,oracle-ee
,oracle-se
,oracle-se1
,oracle-se2
,postgres
,sqlserver-ee
,sqlserver-ex
,sqlserver-se
, andsqlserver-web
.The following arguments are optional:
- default
Only Boolean - Whether the engine version must be an AWS-defined default version. Some engines have multiple default versions, such as for each major version. Using
default_only
may help avoidmultiple RDS engine versions
errors. See alsolatest
. - filters
List<Get
Engine Version Filter> - One or more name/value pairs to use in filtering versions. There are several valid keys; for a full reference, check out describe-db-engine-versions in the AWS CLI reference.
- has
Major BooleanTarget - Whether the engine version must have one or more major upgrade targets. Not including
has_major_target
or setting it tofalse
doesn't imply that there's no corresponding major upgrade target for the engine version. - has
Minor BooleanTarget - Whether the engine version must have one or more minor upgrade targets. Not including
has_minor_target
or setting it tofalse
doesn't imply that there's no corresponding minor upgrade target for the engine version. - include
All Boolean - Whether the engine version
status
can either bedeprecated
oravailable
. When not set or set tofalse
, the engine versionstatus
will always beavailable
. - latest Boolean
- Whether the engine version is the most recent version matching the other criteria. This is different from
default_only
in important ways: "default" relies on AWS-defined defaults, the latest version isn't always the default, and AWS might have multiple default versions for an engine. As a result,default_only
might not prevent errors frommultiple RDS engine versions
, whilelatest
will. (latest
can be used withdefault_only
.) Note: The data source uses a best-effort approach at selecting the latest version. Due to the complexity of version identifiers across engines and incomplete version date information provided by AWS, usinglatest
may not always result in the engine version being the actual latest version. - parameter
Group StringFamily - Name of a specific database parameter group family. Examples of parameter group families are
mysql8.0
,mariadb10.4
, andpostgres12
. - preferred
Major List<String>Targets - Ordered list of preferred major version upgrade targets. The engine version will be the first match in the list unless the
latest
parameter is set totrue
. The engine version will be the default version if you don't include any criteria, such aspreferred_major_targets
. - preferred
Upgrade List<String>Targets - Ordered list of preferred version upgrade targets. The engine version will be the first match in this list unless the
latest
parameter is set totrue
. The engine version will be the default version if you don't include any criteria, such aspreferred_upgrade_targets
. - preferred
Versions List<String> - Ordered list of preferred versions. The engine version will be the first match in this list unless the
latest
parameter is set totrue
. The engine version will be the default version if you don't include any criteria, such aspreferred_versions
. - version String
- engine string
Database engine. Engine values include
aurora
,aurora-mysql
,aurora-postgresql
,docdb
,mariadb
,mysql
,neptune
,oracle-ee
,oracle-se
,oracle-se1
,oracle-se2
,postgres
,sqlserver-ee
,sqlserver-ex
,sqlserver-se
, andsqlserver-web
.The following arguments are optional:
- default
Only boolean - Whether the engine version must be an AWS-defined default version. Some engines have multiple default versions, such as for each major version. Using
default_only
may help avoidmultiple RDS engine versions
errors. See alsolatest
. - filters
Get
Engine Version Filter[] - One or more name/value pairs to use in filtering versions. There are several valid keys; for a full reference, check out describe-db-engine-versions in the AWS CLI reference.
- has
Major booleanTarget - Whether the engine version must have one or more major upgrade targets. Not including
has_major_target
or setting it tofalse
doesn't imply that there's no corresponding major upgrade target for the engine version. - has
Minor booleanTarget - Whether the engine version must have one or more minor upgrade targets. Not including
has_minor_target
or setting it tofalse
doesn't imply that there's no corresponding minor upgrade target for the engine version. - include
All boolean - Whether the engine version
status
can either bedeprecated
oravailable
. When not set or set tofalse
, the engine versionstatus
will always beavailable
. - latest boolean
- Whether the engine version is the most recent version matching the other criteria. This is different from
default_only
in important ways: "default" relies on AWS-defined defaults, the latest version isn't always the default, and AWS might have multiple default versions for an engine. As a result,default_only
might not prevent errors frommultiple RDS engine versions
, whilelatest
will. (latest
can be used withdefault_only
.) Note: The data source uses a best-effort approach at selecting the latest version. Due to the complexity of version identifiers across engines and incomplete version date information provided by AWS, usinglatest
may not always result in the engine version being the actual latest version. - parameter
Group stringFamily - Name of a specific database parameter group family. Examples of parameter group families are
mysql8.0
,mariadb10.4
, andpostgres12
. - preferred
Major string[]Targets - Ordered list of preferred major version upgrade targets. The engine version will be the first match in the list unless the
latest
parameter is set totrue
. The engine version will be the default version if you don't include any criteria, such aspreferred_major_targets
. - preferred
Upgrade string[]Targets - Ordered list of preferred version upgrade targets. The engine version will be the first match in this list unless the
latest
parameter is set totrue
. The engine version will be the default version if you don't include any criteria, such aspreferred_upgrade_targets
. - preferred
Versions string[] - Ordered list of preferred versions. The engine version will be the first match in this list unless the
latest
parameter is set totrue
. The engine version will be the default version if you don't include any criteria, such aspreferred_versions
. - version string
- engine str
Database engine. Engine values include
aurora
,aurora-mysql
,aurora-postgresql
,docdb
,mariadb
,mysql
,neptune
,oracle-ee
,oracle-se
,oracle-se1
,oracle-se2
,postgres
,sqlserver-ee
,sqlserver-ex
,sqlserver-se
, andsqlserver-web
.The following arguments are optional:
- default_
only bool - Whether the engine version must be an AWS-defined default version. Some engines have multiple default versions, such as for each major version. Using
default_only
may help avoidmultiple RDS engine versions
errors. See alsolatest
. - filters
Sequence[Get
Engine Version Filter] - One or more name/value pairs to use in filtering versions. There are several valid keys; for a full reference, check out describe-db-engine-versions in the AWS CLI reference.
- has_
major_ booltarget - Whether the engine version must have one or more major upgrade targets. Not including
has_major_target
or setting it tofalse
doesn't imply that there's no corresponding major upgrade target for the engine version. - has_
minor_ booltarget - Whether the engine version must have one or more minor upgrade targets. Not including
has_minor_target
or setting it tofalse
doesn't imply that there's no corresponding minor upgrade target for the engine version. - include_
all bool - Whether the engine version
status
can either bedeprecated
oravailable
. When not set or set tofalse
, the engine versionstatus
will always beavailable
. - latest bool
- Whether the engine version is the most recent version matching the other criteria. This is different from
default_only
in important ways: "default" relies on AWS-defined defaults, the latest version isn't always the default, and AWS might have multiple default versions for an engine. As a result,default_only
might not prevent errors frommultiple RDS engine versions
, whilelatest
will. (latest
can be used withdefault_only
.) Note: The data source uses a best-effort approach at selecting the latest version. Due to the complexity of version identifiers across engines and incomplete version date information provided by AWS, usinglatest
may not always result in the engine version being the actual latest version. - parameter_
group_ strfamily - Name of a specific database parameter group family. Examples of parameter group families are
mysql8.0
,mariadb10.4
, andpostgres12
. - preferred_
major_ Sequence[str]targets - Ordered list of preferred major version upgrade targets. The engine version will be the first match in the list unless the
latest
parameter is set totrue
. The engine version will be the default version if you don't include any criteria, such aspreferred_major_targets
. - preferred_
upgrade_ Sequence[str]targets - Ordered list of preferred version upgrade targets. The engine version will be the first match in this list unless the
latest
parameter is set totrue
. The engine version will be the default version if you don't include any criteria, such aspreferred_upgrade_targets
. - preferred_
versions Sequence[str] - Ordered list of preferred versions. The engine version will be the first match in this list unless the
latest
parameter is set totrue
. The engine version will be the default version if you don't include any criteria, such aspreferred_versions
. - version str
- engine String
Database engine. Engine values include
aurora
,aurora-mysql
,aurora-postgresql
,docdb
,mariadb
,mysql
,neptune
,oracle-ee
,oracle-se
,oracle-se1
,oracle-se2
,postgres
,sqlserver-ee
,sqlserver-ex
,sqlserver-se
, andsqlserver-web
.The following arguments are optional:
- default
Only Boolean - Whether the engine version must be an AWS-defined default version. Some engines have multiple default versions, such as for each major version. Using
default_only
may help avoidmultiple RDS engine versions
errors. See alsolatest
. - filters List<Property Map>
- One or more name/value pairs to use in filtering versions. There are several valid keys; for a full reference, check out describe-db-engine-versions in the AWS CLI reference.
- has
Major BooleanTarget - Whether the engine version must have one or more major upgrade targets. Not including
has_major_target
or setting it tofalse
doesn't imply that there's no corresponding major upgrade target for the engine version. - has
Minor BooleanTarget - Whether the engine version must have one or more minor upgrade targets. Not including
has_minor_target
or setting it tofalse
doesn't imply that there's no corresponding minor upgrade target for the engine version. - include
All Boolean - Whether the engine version
status
can either bedeprecated
oravailable
. When not set or set tofalse
, the engine versionstatus
will always beavailable
. - latest Boolean
- Whether the engine version is the most recent version matching the other criteria. This is different from
default_only
in important ways: "default" relies on AWS-defined defaults, the latest version isn't always the default, and AWS might have multiple default versions for an engine. As a result,default_only
might not prevent errors frommultiple RDS engine versions
, whilelatest
will. (latest
can be used withdefault_only
.) Note: The data source uses a best-effort approach at selecting the latest version. Due to the complexity of version identifiers across engines and incomplete version date information provided by AWS, usinglatest
may not always result in the engine version being the actual latest version. - parameter
Group StringFamily - Name of a specific database parameter group family. Examples of parameter group families are
mysql8.0
,mariadb10.4
, andpostgres12
. - preferred
Major List<String>Targets - Ordered list of preferred major version upgrade targets. The engine version will be the first match in the list unless the
latest
parameter is set totrue
. The engine version will be the default version if you don't include any criteria, such aspreferred_major_targets
. - preferred
Upgrade List<String>Targets - Ordered list of preferred version upgrade targets. The engine version will be the first match in this list unless the
latest
parameter is set totrue
. The engine version will be the default version if you don't include any criteria, such aspreferred_upgrade_targets
. - preferred
Versions List<String> - Ordered list of preferred versions. The engine version will be the first match in this list unless the
latest
parameter is set totrue
. The engine version will be the default version if you don't include any criteria, such aspreferred_versions
. - version String
getEngineVersion Result
The following output properties are available:
- Default
Character stringSet - Default character set for new instances of the engine version.
- Engine string
- Engine
Description string - Description of the engine.
- Exportable
Log List<string>Types - Set of log types that the engine version has available for export to CloudWatch Logs.
- Id string
- The provider-assigned unique ID for this managed resource.
- Parameter
Group stringFamily - Status string
- Status of the engine version, either
available
ordeprecated
. - Supported
Character List<string>Sets - Set of character sets supported by th engine version.
- Supported
Feature List<string>Names - Set of features supported by the engine version.
- Supported
Modes List<string> - Set of supported engine version modes.
- Supported
Timezones List<string> - Set of the time zones supported by the engine version.
- Supports
Global boolDatabases - Whether you can use Aurora global databases with the engine version.
- Supports
Limitless boolDatabase - Whether the engine version supports Aurora Limitless Database.
- Supports
Log boolExports To Cloudwatch - Whether the engine version supports exporting the log types specified by
exportable_log_types
to CloudWatch Logs. - Supports
Parallel boolQuery - Whether you can use Aurora parallel query with the engine version.
- Supports
Read boolReplica - Whether the engine version supports read replicas.
- Valid
Major List<string>Targets - Set of versions that are valid major version upgrades for the engine version.
- Valid
Minor List<string>Targets - Set of versions that are valid minor version upgrades for the engine version.
- Valid
Upgrade List<string>Targets - Set of versions that are valid major or minor upgrades for the engine version.
- Version string
- Version
Actual string - Complete engine version.
- Version
Description string - Description of the engine version.
- Default
Only bool - Filters
List<Get
Engine Version Filter> - Has
Major boolTarget - Has
Minor boolTarget - Include
All bool - Latest bool
- Preferred
Major List<string>Targets - Preferred
Upgrade List<string>Targets - Preferred
Versions List<string>
- Default
Character stringSet - Default character set for new instances of the engine version.
- Engine string
- Engine
Description string - Description of the engine.
- Exportable
Log []stringTypes - Set of log types that the engine version has available for export to CloudWatch Logs.
- Id string
- The provider-assigned unique ID for this managed resource.
- Parameter
Group stringFamily - Status string
- Status of the engine version, either
available
ordeprecated
. - Supported
Character []stringSets - Set of character sets supported by th engine version.
- Supported
Feature []stringNames - Set of features supported by the engine version.
- Supported
Modes []string - Set of supported engine version modes.
- Supported
Timezones []string - Set of the time zones supported by the engine version.
- Supports
Global boolDatabases - Whether you can use Aurora global databases with the engine version.
- Supports
Limitless boolDatabase - Whether the engine version supports Aurora Limitless Database.
- Supports
Log boolExports To Cloudwatch - Whether the engine version supports exporting the log types specified by
exportable_log_types
to CloudWatch Logs. - Supports
Parallel boolQuery - Whether you can use Aurora parallel query with the engine version.
- Supports
Read boolReplica - Whether the engine version supports read replicas.
- Valid
Major []stringTargets - Set of versions that are valid major version upgrades for the engine version.
- Valid
Minor []stringTargets - Set of versions that are valid minor version upgrades for the engine version.
- Valid
Upgrade []stringTargets - Set of versions that are valid major or minor upgrades for the engine version.
- Version string
- Version
Actual string - Complete engine version.
- Version
Description string - Description of the engine version.
- Default
Only bool - Filters
[]Get
Engine Version Filter - Has
Major boolTarget - Has
Minor boolTarget - Include
All bool - Latest bool
- Preferred
Major []stringTargets - Preferred
Upgrade []stringTargets - Preferred
Versions []string
- default
Character StringSet - Default character set for new instances of the engine version.
- engine String
- engine
Description String - Description of the engine.
- exportable
Log List<String>Types - Set of log types that the engine version has available for export to CloudWatch Logs.
- id String
- The provider-assigned unique ID for this managed resource.
- parameter
Group StringFamily - status String
- Status of the engine version, either
available
ordeprecated
. - supported
Character List<String>Sets - Set of character sets supported by th engine version.
- supported
Feature List<String>Names - Set of features supported by the engine version.
- supported
Modes List<String> - Set of supported engine version modes.
- supported
Timezones List<String> - Set of the time zones supported by the engine version.
- supports
Global BooleanDatabases - Whether you can use Aurora global databases with the engine version.
- supports
Limitless BooleanDatabase - Whether the engine version supports Aurora Limitless Database.
- supports
Log BooleanExports To Cloudwatch - Whether the engine version supports exporting the log types specified by
exportable_log_types
to CloudWatch Logs. - supports
Parallel BooleanQuery - Whether you can use Aurora parallel query with the engine version.
- supports
Read BooleanReplica - Whether the engine version supports read replicas.
- valid
Major List<String>Targets - Set of versions that are valid major version upgrades for the engine version.
- valid
Minor List<String>Targets - Set of versions that are valid minor version upgrades for the engine version.
- valid
Upgrade List<String>Targets - Set of versions that are valid major or minor upgrades for the engine version.
- version String
- version
Actual String - Complete engine version.
- version
Description String - Description of the engine version.
- default
Only Boolean - filters
List<Get
Engine Version Filter> - has
Major BooleanTarget - has
Minor BooleanTarget - include
All Boolean - latest Boolean
- preferred
Major List<String>Targets - preferred
Upgrade List<String>Targets - preferred
Versions List<String>
- default
Character stringSet - Default character set for new instances of the engine version.
- engine string
- engine
Description string - Description of the engine.
- exportable
Log string[]Types - Set of log types that the engine version has available for export to CloudWatch Logs.
- id string
- The provider-assigned unique ID for this managed resource.
- parameter
Group stringFamily - status string
- Status of the engine version, either
available
ordeprecated
. - supported
Character string[]Sets - Set of character sets supported by th engine version.
- supported
Feature string[]Names - Set of features supported by the engine version.
- supported
Modes string[] - Set of supported engine version modes.
- supported
Timezones string[] - Set of the time zones supported by the engine version.
- supports
Global booleanDatabases - Whether you can use Aurora global databases with the engine version.
- supports
Limitless booleanDatabase - Whether the engine version supports Aurora Limitless Database.
- supports
Log booleanExports To Cloudwatch - Whether the engine version supports exporting the log types specified by
exportable_log_types
to CloudWatch Logs. - supports
Parallel booleanQuery - Whether you can use Aurora parallel query with the engine version.
- supports
Read booleanReplica - Whether the engine version supports read replicas.
- valid
Major string[]Targets - Set of versions that are valid major version upgrades for the engine version.
- valid
Minor string[]Targets - Set of versions that are valid minor version upgrades for the engine version.
- valid
Upgrade string[]Targets - Set of versions that are valid major or minor upgrades for the engine version.
- version string
- version
Actual string - Complete engine version.
- version
Description string - Description of the engine version.
- default
Only boolean - filters
Get
Engine Version Filter[] - has
Major booleanTarget - has
Minor booleanTarget - include
All boolean - latest boolean
- preferred
Major string[]Targets - preferred
Upgrade string[]Targets - preferred
Versions string[]
- default_
character_ strset - Default character set for new instances of the engine version.
- engine str
- engine_
description str - Description of the engine.
- exportable_
log_ Sequence[str]types - Set of log types that the engine version has available for export to CloudWatch Logs.
- id str
- The provider-assigned unique ID for this managed resource.
- parameter_
group_ strfamily - status str
- Status of the engine version, either
available
ordeprecated
. - supported_
character_ Sequence[str]sets - Set of character sets supported by th engine version.
- supported_
feature_ Sequence[str]names - Set of features supported by the engine version.
- supported_
modes Sequence[str] - Set of supported engine version modes.
- supported_
timezones Sequence[str] - Set of the time zones supported by the engine version.
- supports_
global_ booldatabases - Whether you can use Aurora global databases with the engine version.
- supports_
limitless_ booldatabase - Whether the engine version supports Aurora Limitless Database.
- supports_
log_ boolexports_ to_ cloudwatch - Whether the engine version supports exporting the log types specified by
exportable_log_types
to CloudWatch Logs. - supports_
parallel_ boolquery - Whether you can use Aurora parallel query with the engine version.
- supports_
read_ boolreplica - Whether the engine version supports read replicas.
- valid_
major_ Sequence[str]targets - Set of versions that are valid major version upgrades for the engine version.
- valid_
minor_ Sequence[str]targets - Set of versions that are valid minor version upgrades for the engine version.
- valid_
upgrade_ Sequence[str]targets - Set of versions that are valid major or minor upgrades for the engine version.
- version str
- version_
actual str - Complete engine version.
- version_
description str - Description of the engine version.
- default_
only bool - filters
Sequence[Get
Engine Version Filter] - has_
major_ booltarget - has_
minor_ booltarget - include_
all bool - latest bool
- preferred_
major_ Sequence[str]targets - preferred_
upgrade_ Sequence[str]targets - preferred_
versions Sequence[str]
- default
Character StringSet - Default character set for new instances of the engine version.
- engine String
- engine
Description String - Description of the engine.
- exportable
Log List<String>Types - Set of log types that the engine version has available for export to CloudWatch Logs.
- id String
- The provider-assigned unique ID for this managed resource.
- parameter
Group StringFamily - status String
- Status of the engine version, either
available
ordeprecated
. - supported
Character List<String>Sets - Set of character sets supported by th engine version.
- supported
Feature List<String>Names - Set of features supported by the engine version.
- supported
Modes List<String> - Set of supported engine version modes.
- supported
Timezones List<String> - Set of the time zones supported by the engine version.
- supports
Global BooleanDatabases - Whether you can use Aurora global databases with the engine version.
- supports
Limitless BooleanDatabase - Whether the engine version supports Aurora Limitless Database.
- supports
Log BooleanExports To Cloudwatch - Whether the engine version supports exporting the log types specified by
exportable_log_types
to CloudWatch Logs. - supports
Parallel BooleanQuery - Whether you can use Aurora parallel query with the engine version.
- supports
Read BooleanReplica - Whether the engine version supports read replicas.
- valid
Major List<String>Targets - Set of versions that are valid major version upgrades for the engine version.
- valid
Minor List<String>Targets - Set of versions that are valid minor version upgrades for the engine version.
- valid
Upgrade List<String>Targets - Set of versions that are valid major or minor upgrades for the engine version.
- version String
- version
Actual String - Complete engine version.
- version
Description String - Description of the engine version.
- default
Only Boolean - filters List<Property Map>
- has
Major BooleanTarget - has
Minor BooleanTarget - include
All Boolean - latest Boolean
- preferred
Major List<String>Targets - preferred
Upgrade List<String>Targets - preferred
Versions List<String>
Supporting Types
GetEngineVersionFilter
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aws
Terraform Provider.