AWS Classic v5.41.0, May 15 23
AWS Classic v5.41.0, May 15 23
aws.neptune.getEngineVersion
Explore with Pulumi AI
Information about a Neptune engine version.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var test = Aws.Neptune.GetEngineVersion.Invoke(new()
{
PreferredVersions = new[]
{
"1.0.3.0",
"1.0.2.2",
"1.0.2.1",
},
});
});
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/neptune"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := neptune.GetEngineVersion(ctx, &neptune.GetEngineVersionArgs{
PreferredVersions: []string{
"1.0.3.0",
"1.0.2.2",
"1.0.2.1",
},
}, nil)
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.neptune.NeptuneFunctions;
import com.pulumi.aws.neptune.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 = NeptuneFunctions.getEngineVersion(GetEngineVersionArgs.builder()
.preferredVersions(
"1.0.3.0",
"1.0.2.2",
"1.0.2.1")
.build());
}
}
import pulumi
import pulumi_aws as aws
test = aws.neptune.get_engine_version(preferred_versions=[
"1.0.3.0",
"1.0.2.2",
"1.0.2.1",
])
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const test = aws.neptune.getEngineVersion({
preferredVersions: [
"1.0.3.0",
"1.0.2.2",
"1.0.2.1",
],
});
variables:
test:
fn::invoke:
Function: aws:neptune:getEngineVersion
Arguments:
preferredVersions:
- 1.0.3.0
- 1.0.2.2
- 1.0.2.1
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(engine: Optional[str] = None,
parameter_group_family: Optional[str] = None,
preferred_versions: Optional[Sequence[str]] = None,
version: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetEngineVersionResult
def get_engine_version_output(engine: Optional[pulumi.Input[str]] = None,
parameter_group_family: Optional[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:neptune/getEngineVersion:getEngineVersion
arguments:
# arguments dictionary
The following arguments are supported:
- Engine string
DB engine. (Default:
neptune
)- Parameter
Group stringFamily Name of a specific DB parameter group family. An example parameter group family is
neptune1
.- Preferred
Versions List<string> Ordered list of preferred engine versions. The first match in this list will be returned. If no preferred matches are found and the original search returned more than one result, an error is returned. If both the
version
andpreferred_versions
arguments are not configured, the data source will return the default version for the engine.- Version string
Version of the DB engine. For example,
1.0.1.0
,1.0.2.2
, and1.0.3.0
. If both theversion
andpreferred_versions
arguments are not configured, the data source will return the default version for the engine.
- Engine string
DB engine. (Default:
neptune
)- Parameter
Group stringFamily Name of a specific DB parameter group family. An example parameter group family is
neptune1
.- Preferred
Versions []string Ordered list of preferred engine versions. The first match in this list will be returned. If no preferred matches are found and the original search returned more than one result, an error is returned. If both the
version
andpreferred_versions
arguments are not configured, the data source will return the default version for the engine.- Version string
Version of the DB engine. For example,
1.0.1.0
,1.0.2.2
, and1.0.3.0
. If both theversion
andpreferred_versions
arguments are not configured, the data source will return the default version for the engine.
- engine String
DB engine. (Default:
neptune
)- parameter
Group StringFamily Name of a specific DB parameter group family. An example parameter group family is
neptune1
.- preferred
Versions List<String> Ordered list of preferred engine versions. The first match in this list will be returned. If no preferred matches are found and the original search returned more than one result, an error is returned. If both the
version
andpreferred_versions
arguments are not configured, the data source will return the default version for the engine.- version String
Version of the DB engine. For example,
1.0.1.0
,1.0.2.2
, and1.0.3.0
. If both theversion
andpreferred_versions
arguments are not configured, the data source will return the default version for the engine.
- engine string
DB engine. (Default:
neptune
)- parameter
Group stringFamily Name of a specific DB parameter group family. An example parameter group family is
neptune1
.- preferred
Versions string[] Ordered list of preferred engine versions. The first match in this list will be returned. If no preferred matches are found and the original search returned more than one result, an error is returned. If both the
version
andpreferred_versions
arguments are not configured, the data source will return the default version for the engine.- version string
Version of the DB engine. For example,
1.0.1.0
,1.0.2.2
, and1.0.3.0
. If both theversion
andpreferred_versions
arguments are not configured, the data source will return the default version for the engine.
- engine str
DB engine. (Default:
neptune
)- parameter_
group_ strfamily Name of a specific DB parameter group family. An example parameter group family is
neptune1
.- preferred_
versions Sequence[str] Ordered list of preferred engine versions. The first match in this list will be returned. If no preferred matches are found and the original search returned more than one result, an error is returned. If both the
version
andpreferred_versions
arguments are not configured, the data source will return the default version for the engine.- version str
Version of the DB engine. For example,
1.0.1.0
,1.0.2.2
, and1.0.3.0
. If both theversion
andpreferred_versions
arguments are not configured, the data source will return the default version for the engine.
- engine String
DB engine. (Default:
neptune
)- parameter
Group StringFamily Name of a specific DB parameter group family. An example parameter group family is
neptune1
.- preferred
Versions List<String> Ordered list of preferred engine versions. The first match in this list will be returned. If no preferred matches are found and the original search returned more than one result, an error is returned. If both the
version
andpreferred_versions
arguments are not configured, the data source will return the default version for the engine.- version String
Version of the DB engine. For example,
1.0.1.0
,1.0.2.2
, and1.0.3.0
. If both theversion
andpreferred_versions
arguments are not configured, the data source will return the default version for the engine.
getEngineVersion Result
The following output properties are available:
- Engine
Description string Description of the database engine.
- Exportable
Log List<string>Types Set of log types that the database engine has available for export to CloudWatch Logs.
- Id string
The provider-assigned unique ID for this managed resource.
- Parameter
Group stringFamily - Supported
Timezones List<string> Set of the time zones supported by this engine.
- Supports
Log boolExports To Cloudwatch Indicates whether the engine version supports exporting the log types specified by
exportable_log_types
to CloudWatch Logs.- Supports
Read boolReplica Indicates whether the database engine version supports read replicas.
- Valid
Upgrade List<string>Targets Set of engine versions that this database engine version can be upgraded to.
- Version string
- Version
Description string Description of the database engine version.
- Engine string
- Preferred
Versions List<string>
- Engine
Description string Description of the database engine.
- Exportable
Log []stringTypes Set of log types that the database engine has available for export to CloudWatch Logs.
- Id string
The provider-assigned unique ID for this managed resource.
- Parameter
Group stringFamily - Supported
Timezones []string Set of the time zones supported by this engine.
- Supports
Log boolExports To Cloudwatch Indicates whether the engine version supports exporting the log types specified by
exportable_log_types
to CloudWatch Logs.- Supports
Read boolReplica Indicates whether the database engine version supports read replicas.
- Valid
Upgrade []stringTargets Set of engine versions that this database engine version can be upgraded to.
- Version string
- Version
Description string Description of the database engine version.
- Engine string
- Preferred
Versions []string
- engine
Description String Description of the database engine.
- exportable
Log List<String>Types Set of log types that the database engine has available for export to CloudWatch Logs.
- id String
The provider-assigned unique ID for this managed resource.
- parameter
Group StringFamily - supported
Timezones List<String> Set of the time zones supported by this engine.
- supports
Log BooleanExports To Cloudwatch Indicates whether the engine version supports exporting the log types specified by
exportable_log_types
to CloudWatch Logs.- supports
Read BooleanReplica Indicates whether the database engine version supports read replicas.
- valid
Upgrade List<String>Targets Set of engine versions that this database engine version can be upgraded to.
- version String
- version
Description String Description of the database engine version.
- engine String
- preferred
Versions List<String>
- engine
Description string Description of the database engine.
- exportable
Log string[]Types Set of log types that the database engine has available for export to CloudWatch Logs.
- id string
The provider-assigned unique ID for this managed resource.
- parameter
Group stringFamily - supported
Timezones string[] Set of the time zones supported by this engine.
- supports
Log booleanExports To Cloudwatch Indicates whether the engine version supports exporting the log types specified by
exportable_log_types
to CloudWatch Logs.- supports
Read booleanReplica Indicates whether the database engine version supports read replicas.
- valid
Upgrade string[]Targets Set of engine versions that this database engine version can be upgraded to.
- version string
- version
Description string Description of the database engine version.
- engine string
- preferred
Versions string[]
- engine_
description str Description of the database engine.
- exportable_
log_ Sequence[str]types Set of log types that the database engine has available for export to CloudWatch Logs.
- id str
The provider-assigned unique ID for this managed resource.
- parameter_
group_ strfamily - supported_
timezones Sequence[str] Set of the time zones supported by this engine.
- supports_
log_ boolexports_ to_ cloudwatch Indicates whether the engine version supports exporting the log types specified by
exportable_log_types
to CloudWatch Logs.- supports_
read_ boolreplica Indicates whether the database engine version supports read replicas.
- valid_
upgrade_ Sequence[str]targets Set of engine versions that this database engine version can be upgraded to.
- version str
- version_
description str Description of the database engine version.
- engine str
- preferred_
versions Sequence[str]
- engine
Description String Description of the database engine.
- exportable
Log List<String>Types Set of log types that the database engine has available for export to CloudWatch Logs.
- id String
The provider-assigned unique ID for this managed resource.
- parameter
Group StringFamily - supported
Timezones List<String> Set of the time zones supported by this engine.
- supports
Log BooleanExports To Cloudwatch Indicates whether the engine version supports exporting the log types specified by
exportable_log_types
to CloudWatch Logs.- supports
Read BooleanReplica Indicates whether the database engine version supports read replicas.
- valid
Upgrade List<String>Targets Set of engine versions that this database engine version can be upgraded to.
- version String
- version
Description String Description of the database engine version.
- engine String
- preferred
Versions List<String>
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
aws
Terraform Provider.