Try AWS Native preview for resources not in the classic version.
AWS Classic v6.42.0 published on Wednesday, Jun 26, 2024 by Pulumi
aws.rds.getInstance
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
AWS Classic v6.42.0 published on Wednesday, Jun 26, 2024 by Pulumi
Use this data source to get information about an RDS instance
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const database = aws.rds.getInstance({
dbInstanceIdentifier: "my-test-database",
});
import pulumi
import pulumi_aws as aws
database = aws.rds.get_instance(db_instance_identifier="my-test-database")
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.LookupInstance(ctx, &rds.LookupInstanceArgs{
DbInstanceIdentifier: pulumi.StringRef("my-test-database"),
}, 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 database = Aws.Rds.GetInstance.Invoke(new()
{
DbInstanceIdentifier = "my-test-database",
});
});
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.GetInstanceArgs;
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 database = RdsFunctions.getInstance(GetInstanceArgs.builder()
.dbInstanceIdentifier("my-test-database")
.build());
}
}
variables:
database:
fn::invoke:
Function: aws:rds:getInstance
Arguments:
dbInstanceIdentifier: my-test-database
Using getInstance
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 getInstance(args: GetInstanceArgs, opts?: InvokeOptions): Promise<GetInstanceResult>
function getInstanceOutput(args: GetInstanceOutputArgs, opts?: InvokeOptions): Output<GetInstanceResult>
def get_instance(db_instance_identifier: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
opts: Optional[InvokeOptions] = None) -> GetInstanceResult
def get_instance_output(db_instance_identifier: Optional[pulumi.Input[str]] = None,
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetInstanceResult]
func LookupInstance(ctx *Context, args *LookupInstanceArgs, opts ...InvokeOption) (*LookupInstanceResult, error)
func LookupInstanceOutput(ctx *Context, args *LookupInstanceOutputArgs, opts ...InvokeOption) LookupInstanceResultOutput
> Note: This function is named LookupInstance
in the Go SDK.
public static class GetInstance
{
public static Task<GetInstanceResult> InvokeAsync(GetInstanceArgs args, InvokeOptions? opts = null)
public static Output<GetInstanceResult> Invoke(GetInstanceInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetInstanceResult> getInstance(GetInstanceArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: aws:rds/getInstance:getInstance
arguments:
# arguments dictionary
The following arguments are supported:
- Db
Instance stringIdentifier - Name of the RDS instance.
- Dictionary<string, string>
- Map of tags, each pair of which must exactly match a pair on the desired instance.
- Db
Instance stringIdentifier - Name of the RDS instance.
- map[string]string
- Map of tags, each pair of which must exactly match a pair on the desired instance.
- db
Instance StringIdentifier - Name of the RDS instance.
- Map<String,String>
- Map of tags, each pair of which must exactly match a pair on the desired instance.
- db
Instance stringIdentifier - Name of the RDS instance.
- {[key: string]: string}
- Map of tags, each pair of which must exactly match a pair on the desired instance.
- db_
instance_ stridentifier - Name of the RDS instance.
- Mapping[str, str]
- Map of tags, each pair of which must exactly match a pair on the desired instance.
- db
Instance StringIdentifier - Name of the RDS instance.
- Map<String>
- Map of tags, each pair of which must exactly match a pair on the desired instance.
getInstance Result
The following output properties are available:
- Address string
- Hostname of the RDS instance. See also
endpoint
andport
. - Allocated
Storage int - Allocated storage size specified in gigabytes.
- Auto
Minor boolVersion Upgrade - Indicates that minor version patches are applied automatically.
- Availability
Zone string - Name of the Availability Zone the DB instance is located in.
- Backup
Retention intPeriod - Specifies the number of days for which automatic DB snapshots are retained.
- Ca
Cert stringIdentifier - Identifier of the CA certificate for the DB instance.
- Db
Cluster stringIdentifier - If the DB instance is a member of a DB cluster, contains the name of the DB cluster that the DB instance is a member of.
- Db
Instance stringArn - ARN for the DB instance.
- Db
Instance stringClass - Contains the name of the compute and memory capacity class of the DB instance.
- Db
Instance stringIdentifier - Db
Instance intPort - Port that the DB instance listens on.
- Db
Name string - Contains the name of the initial database of this instance that was provided at create time, if one was specified when the DB instance was created. This same name is returned for the life of the DB instance.
- Db
Parameter List<string>Groups - Provides the list of DB parameter groups applied to this DB instance.
- Db
Subnet stringGroup - Name of the subnet group associated with the DB instance.
- Enabled
Cloudwatch List<string>Logs Exports - List of log types to export to cloudwatch.
- Endpoint string
- Connection endpoint in
address:port
format. - Engine string
- Provides the name of the database engine to be used for this DB instance.
- Engine
Version string - Database engine version.
- Hosted
Zone stringId - Canonical hosted zone ID of the DB instance (to be used in a Route 53 Alias record).
- Id string
- The provider-assigned unique ID for this managed resource.
- Iops int
- Provisioned IOPS (I/O operations per second) value.
- Kms
Key stringId - The Amazon Web Services KMS key identifier that is used to encrypt the secret.
- License
Model string - License model information for this DB instance.
- Master
User List<GetSecrets Instance Master User Secret> - Provides the master user secret. Only available when
manage_master_user_password
is set to true. Documented below. - Master
Username string - Contains the master username for the DB instance.
- Max
Allocated intStorage - The upper limit to which Amazon RDS can automatically scale the storage of the DB instance.
- Monitoring
Interval int - Interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB instance.
- Monitoring
Role stringArn - ARN for the IAM role that permits RDS to send Enhanced Monitoring metrics to CloudWatch Logs.
- Multi
Az bool - If the DB instance is a Multi-AZ deployment.
- Network
Type string - Network type of the DB instance.
- Option
Group List<string>Memberships - Provides the list of option group memberships for this DB instance.
- Port int
- Database endpoint port, primarily used by an Aurora DB cluster. For a conventional RDS DB instance, the
db_instance_port
is typically the preferred choice. - Preferred
Backup stringWindow - Specifies the daily time range during which automated backups are created.
- Preferred
Maintenance stringWindow - Specifies the weekly time range during which system maintenance can occur in UTC.
- Publicly
Accessible bool - Accessibility options for the DB instance.
- Replicate
Source stringDb - Identifier of the source DB that this is a replica of.
- Resource
Id string - RDS Resource ID of this instance.
- Storage
Encrypted bool - Whether the DB instance is encrypted.
- Storage
Throughput int - Storage throughput value for the DB instance.
- Storage
Type string - Storage type associated with DB instance.
- Dictionary<string, string>
- Timezone string
- Time zone of the DB instance.
- Vpc
Security List<string>Groups - Provides a list of VPC security group elements that the DB instance belongs to.
- Address string
- Hostname of the RDS instance. See also
endpoint
andport
. - Allocated
Storage int - Allocated storage size specified in gigabytes.
- Auto
Minor boolVersion Upgrade - Indicates that minor version patches are applied automatically.
- Availability
Zone string - Name of the Availability Zone the DB instance is located in.
- Backup
Retention intPeriod - Specifies the number of days for which automatic DB snapshots are retained.
- Ca
Cert stringIdentifier - Identifier of the CA certificate for the DB instance.
- Db
Cluster stringIdentifier - If the DB instance is a member of a DB cluster, contains the name of the DB cluster that the DB instance is a member of.
- Db
Instance stringArn - ARN for the DB instance.
- Db
Instance stringClass - Contains the name of the compute and memory capacity class of the DB instance.
- Db
Instance stringIdentifier - Db
Instance intPort - Port that the DB instance listens on.
- Db
Name string - Contains the name of the initial database of this instance that was provided at create time, if one was specified when the DB instance was created. This same name is returned for the life of the DB instance.
- Db
Parameter []stringGroups - Provides the list of DB parameter groups applied to this DB instance.
- Db
Subnet stringGroup - Name of the subnet group associated with the DB instance.
- Enabled
Cloudwatch []stringLogs Exports - List of log types to export to cloudwatch.
- Endpoint string
- Connection endpoint in
address:port
format. - Engine string
- Provides the name of the database engine to be used for this DB instance.
- Engine
Version string - Database engine version.
- Hosted
Zone stringId - Canonical hosted zone ID of the DB instance (to be used in a Route 53 Alias record).
- Id string
- The provider-assigned unique ID for this managed resource.
- Iops int
- Provisioned IOPS (I/O operations per second) value.
- Kms
Key stringId - The Amazon Web Services KMS key identifier that is used to encrypt the secret.
- License
Model string - License model information for this DB instance.
- Master
User []GetSecrets Instance Master User Secret - Provides the master user secret. Only available when
manage_master_user_password
is set to true. Documented below. - Master
Username string - Contains the master username for the DB instance.
- Max
Allocated intStorage - The upper limit to which Amazon RDS can automatically scale the storage of the DB instance.
- Monitoring
Interval int - Interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB instance.
- Monitoring
Role stringArn - ARN for the IAM role that permits RDS to send Enhanced Monitoring metrics to CloudWatch Logs.
- Multi
Az bool - If the DB instance is a Multi-AZ deployment.
- Network
Type string - Network type of the DB instance.
- Option
Group []stringMemberships - Provides the list of option group memberships for this DB instance.
- Port int
- Database endpoint port, primarily used by an Aurora DB cluster. For a conventional RDS DB instance, the
db_instance_port
is typically the preferred choice. - Preferred
Backup stringWindow - Specifies the daily time range during which automated backups are created.
- Preferred
Maintenance stringWindow - Specifies the weekly time range during which system maintenance can occur in UTC.
- Publicly
Accessible bool - Accessibility options for the DB instance.
- Replicate
Source stringDb - Identifier of the source DB that this is a replica of.
- Resource
Id string - RDS Resource ID of this instance.
- Storage
Encrypted bool - Whether the DB instance is encrypted.
- Storage
Throughput int - Storage throughput value for the DB instance.
- Storage
Type string - Storage type associated with DB instance.
- map[string]string
- Timezone string
- Time zone of the DB instance.
- Vpc
Security []stringGroups - Provides a list of VPC security group elements that the DB instance belongs to.
- address String
- Hostname of the RDS instance. See also
endpoint
andport
. - allocated
Storage Integer - Allocated storage size specified in gigabytes.
- auto
Minor BooleanVersion Upgrade - Indicates that minor version patches are applied automatically.
- availability
Zone String - Name of the Availability Zone the DB instance is located in.
- backup
Retention IntegerPeriod - Specifies the number of days for which automatic DB snapshots are retained.
- ca
Cert StringIdentifier - Identifier of the CA certificate for the DB instance.
- db
Cluster StringIdentifier - If the DB instance is a member of a DB cluster, contains the name of the DB cluster that the DB instance is a member of.
- db
Instance StringArn - ARN for the DB instance.
- db
Instance StringClass - Contains the name of the compute and memory capacity class of the DB instance.
- db
Instance StringIdentifier - db
Instance IntegerPort - Port that the DB instance listens on.
- db
Name String - Contains the name of the initial database of this instance that was provided at create time, if one was specified when the DB instance was created. This same name is returned for the life of the DB instance.
- db
Parameter List<String>Groups - Provides the list of DB parameter groups applied to this DB instance.
- db
Subnet StringGroup - Name of the subnet group associated with the DB instance.
- enabled
Cloudwatch List<String>Logs Exports - List of log types to export to cloudwatch.
- endpoint String
- Connection endpoint in
address:port
format. - engine String
- Provides the name of the database engine to be used for this DB instance.
- engine
Version String - Database engine version.
- hosted
Zone StringId - Canonical hosted zone ID of the DB instance (to be used in a Route 53 Alias record).
- id String
- The provider-assigned unique ID for this managed resource.
- iops Integer
- Provisioned IOPS (I/O operations per second) value.
- kms
Key StringId - The Amazon Web Services KMS key identifier that is used to encrypt the secret.
- license
Model String - License model information for this DB instance.
- master
User List<GetSecrets Instance Master User Secret> - Provides the master user secret. Only available when
manage_master_user_password
is set to true. Documented below. - master
Username String - Contains the master username for the DB instance.
- max
Allocated IntegerStorage - The upper limit to which Amazon RDS can automatically scale the storage of the DB instance.
- monitoring
Interval Integer - Interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB instance.
- monitoring
Role StringArn - ARN for the IAM role that permits RDS to send Enhanced Monitoring metrics to CloudWatch Logs.
- multi
Az Boolean - If the DB instance is a Multi-AZ deployment.
- network
Type String - Network type of the DB instance.
- option
Group List<String>Memberships - Provides the list of option group memberships for this DB instance.
- port Integer
- Database endpoint port, primarily used by an Aurora DB cluster. For a conventional RDS DB instance, the
db_instance_port
is typically the preferred choice. - preferred
Backup StringWindow - Specifies the daily time range during which automated backups are created.
- preferred
Maintenance StringWindow - Specifies the weekly time range during which system maintenance can occur in UTC.
- publicly
Accessible Boolean - Accessibility options for the DB instance.
- replicate
Source StringDb - Identifier of the source DB that this is a replica of.
- resource
Id String - RDS Resource ID of this instance.
- storage
Encrypted Boolean - Whether the DB instance is encrypted.
- storage
Throughput Integer - Storage throughput value for the DB instance.
- storage
Type String - Storage type associated with DB instance.
- Map<String,String>
- timezone String
- Time zone of the DB instance.
- vpc
Security List<String>Groups - Provides a list of VPC security group elements that the DB instance belongs to.
- address string
- Hostname of the RDS instance. See also
endpoint
andport
. - allocated
Storage number - Allocated storage size specified in gigabytes.
- auto
Minor booleanVersion Upgrade - Indicates that minor version patches are applied automatically.
- availability
Zone string - Name of the Availability Zone the DB instance is located in.
- backup
Retention numberPeriod - Specifies the number of days for which automatic DB snapshots are retained.
- ca
Cert stringIdentifier - Identifier of the CA certificate for the DB instance.
- db
Cluster stringIdentifier - If the DB instance is a member of a DB cluster, contains the name of the DB cluster that the DB instance is a member of.
- db
Instance stringArn - ARN for the DB instance.
- db
Instance stringClass - Contains the name of the compute and memory capacity class of the DB instance.
- db
Instance stringIdentifier - db
Instance numberPort - Port that the DB instance listens on.
- db
Name string - Contains the name of the initial database of this instance that was provided at create time, if one was specified when the DB instance was created. This same name is returned for the life of the DB instance.
- db
Parameter string[]Groups - Provides the list of DB parameter groups applied to this DB instance.
- db
Subnet stringGroup - Name of the subnet group associated with the DB instance.
- enabled
Cloudwatch string[]Logs Exports - List of log types to export to cloudwatch.
- endpoint string
- Connection endpoint in
address:port
format. - engine string
- Provides the name of the database engine to be used for this DB instance.
- engine
Version string - Database engine version.
- hosted
Zone stringId - Canonical hosted zone ID of the DB instance (to be used in a Route 53 Alias record).
- id string
- The provider-assigned unique ID for this managed resource.
- iops number
- Provisioned IOPS (I/O operations per second) value.
- kms
Key stringId - The Amazon Web Services KMS key identifier that is used to encrypt the secret.
- license
Model string - License model information for this DB instance.
- master
User GetSecrets Instance Master User Secret[] - Provides the master user secret. Only available when
manage_master_user_password
is set to true. Documented below. - master
Username string - Contains the master username for the DB instance.
- max
Allocated numberStorage - The upper limit to which Amazon RDS can automatically scale the storage of the DB instance.
- monitoring
Interval number - Interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB instance.
- monitoring
Role stringArn - ARN for the IAM role that permits RDS to send Enhanced Monitoring metrics to CloudWatch Logs.
- multi
Az boolean - If the DB instance is a Multi-AZ deployment.
- network
Type string - Network type of the DB instance.
- option
Group string[]Memberships - Provides the list of option group memberships for this DB instance.
- port number
- Database endpoint port, primarily used by an Aurora DB cluster. For a conventional RDS DB instance, the
db_instance_port
is typically the preferred choice. - preferred
Backup stringWindow - Specifies the daily time range during which automated backups are created.
- preferred
Maintenance stringWindow - Specifies the weekly time range during which system maintenance can occur in UTC.
- publicly
Accessible boolean - Accessibility options for the DB instance.
- replicate
Source stringDb - Identifier of the source DB that this is a replica of.
- resource
Id string - RDS Resource ID of this instance.
- storage
Encrypted boolean - Whether the DB instance is encrypted.
- storage
Throughput number - Storage throughput value for the DB instance.
- storage
Type string - Storage type associated with DB instance.
- {[key: string]: string}
- timezone string
- Time zone of the DB instance.
- vpc
Security string[]Groups - Provides a list of VPC security group elements that the DB instance belongs to.
- address str
- Hostname of the RDS instance. See also
endpoint
andport
. - allocated_
storage int - Allocated storage size specified in gigabytes.
- auto_
minor_ boolversion_ upgrade - Indicates that minor version patches are applied automatically.
- availability_
zone str - Name of the Availability Zone the DB instance is located in.
- backup_
retention_ intperiod - Specifies the number of days for which automatic DB snapshots are retained.
- ca_
cert_ stridentifier - Identifier of the CA certificate for the DB instance.
- db_
cluster_ stridentifier - If the DB instance is a member of a DB cluster, contains the name of the DB cluster that the DB instance is a member of.
- db_
instance_ strarn - ARN for the DB instance.
- db_
instance_ strclass - Contains the name of the compute and memory capacity class of the DB instance.
- db_
instance_ stridentifier - db_
instance_ intport - Port that the DB instance listens on.
- db_
name str - Contains the name of the initial database of this instance that was provided at create time, if one was specified when the DB instance was created. This same name is returned for the life of the DB instance.
- db_
parameter_ Sequence[str]groups - Provides the list of DB parameter groups applied to this DB instance.
- db_
subnet_ strgroup - Name of the subnet group associated with the DB instance.
- enabled_
cloudwatch_ Sequence[str]logs_ exports - List of log types to export to cloudwatch.
- endpoint str
- Connection endpoint in
address:port
format. - engine str
- Provides the name of the database engine to be used for this DB instance.
- engine_
version str - Database engine version.
- hosted_
zone_ strid - Canonical hosted zone ID of the DB instance (to be used in a Route 53 Alias record).
- id str
- The provider-assigned unique ID for this managed resource.
- iops int
- Provisioned IOPS (I/O operations per second) value.
- kms_
key_ strid - The Amazon Web Services KMS key identifier that is used to encrypt the secret.
- license_
model str - License model information for this DB instance.
- master_
user_ Sequence[Getsecrets Instance Master User Secret] - Provides the master user secret. Only available when
manage_master_user_password
is set to true. Documented below. - master_
username str - Contains the master username for the DB instance.
- max_
allocated_ intstorage - The upper limit to which Amazon RDS can automatically scale the storage of the DB instance.
- monitoring_
interval int - Interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB instance.
- monitoring_
role_ strarn - ARN for the IAM role that permits RDS to send Enhanced Monitoring metrics to CloudWatch Logs.
- multi_
az bool - If the DB instance is a Multi-AZ deployment.
- network_
type str - Network type of the DB instance.
- option_
group_ Sequence[str]memberships - Provides the list of option group memberships for this DB instance.
- port int
- Database endpoint port, primarily used by an Aurora DB cluster. For a conventional RDS DB instance, the
db_instance_port
is typically the preferred choice. - preferred_
backup_ strwindow - Specifies the daily time range during which automated backups are created.
- preferred_
maintenance_ strwindow - Specifies the weekly time range during which system maintenance can occur in UTC.
- publicly_
accessible bool - Accessibility options for the DB instance.
- replicate_
source_ strdb - Identifier of the source DB that this is a replica of.
- resource_
id str - RDS Resource ID of this instance.
- storage_
encrypted bool - Whether the DB instance is encrypted.
- storage_
throughput int - Storage throughput value for the DB instance.
- storage_
type str - Storage type associated with DB instance.
- Mapping[str, str]
- timezone str
- Time zone of the DB instance.
- vpc_
security_ Sequence[str]groups - Provides a list of VPC security group elements that the DB instance belongs to.
- address String
- Hostname of the RDS instance. See also
endpoint
andport
. - allocated
Storage Number - Allocated storage size specified in gigabytes.
- auto
Minor BooleanVersion Upgrade - Indicates that minor version patches are applied automatically.
- availability
Zone String - Name of the Availability Zone the DB instance is located in.
- backup
Retention NumberPeriod - Specifies the number of days for which automatic DB snapshots are retained.
- ca
Cert StringIdentifier - Identifier of the CA certificate for the DB instance.
- db
Cluster StringIdentifier - If the DB instance is a member of a DB cluster, contains the name of the DB cluster that the DB instance is a member of.
- db
Instance StringArn - ARN for the DB instance.
- db
Instance StringClass - Contains the name of the compute and memory capacity class of the DB instance.
- db
Instance StringIdentifier - db
Instance NumberPort - Port that the DB instance listens on.
- db
Name String - Contains the name of the initial database of this instance that was provided at create time, if one was specified when the DB instance was created. This same name is returned for the life of the DB instance.
- db
Parameter List<String>Groups - Provides the list of DB parameter groups applied to this DB instance.
- db
Subnet StringGroup - Name of the subnet group associated with the DB instance.
- enabled
Cloudwatch List<String>Logs Exports - List of log types to export to cloudwatch.
- endpoint String
- Connection endpoint in
address:port
format. - engine String
- Provides the name of the database engine to be used for this DB instance.
- engine
Version String - Database engine version.
- hosted
Zone StringId - Canonical hosted zone ID of the DB instance (to be used in a Route 53 Alias record).
- id String
- The provider-assigned unique ID for this managed resource.
- iops Number
- Provisioned IOPS (I/O operations per second) value.
- kms
Key StringId - The Amazon Web Services KMS key identifier that is used to encrypt the secret.
- license
Model String - License model information for this DB instance.
- master
User List<Property Map>Secrets - Provides the master user secret. Only available when
manage_master_user_password
is set to true. Documented below. - master
Username String - Contains the master username for the DB instance.
- max
Allocated NumberStorage - The upper limit to which Amazon RDS can automatically scale the storage of the DB instance.
- monitoring
Interval Number - Interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB instance.
- monitoring
Role StringArn - ARN for the IAM role that permits RDS to send Enhanced Monitoring metrics to CloudWatch Logs.
- multi
Az Boolean - If the DB instance is a Multi-AZ deployment.
- network
Type String - Network type of the DB instance.
- option
Group List<String>Memberships - Provides the list of option group memberships for this DB instance.
- port Number
- Database endpoint port, primarily used by an Aurora DB cluster. For a conventional RDS DB instance, the
db_instance_port
is typically the preferred choice. - preferred
Backup StringWindow - Specifies the daily time range during which automated backups are created.
- preferred
Maintenance StringWindow - Specifies the weekly time range during which system maintenance can occur in UTC.
- publicly
Accessible Boolean - Accessibility options for the DB instance.
- replicate
Source StringDb - Identifier of the source DB that this is a replica of.
- resource
Id String - RDS Resource ID of this instance.
- storage
Encrypted Boolean - Whether the DB instance is encrypted.
- storage
Throughput Number - Storage throughput value for the DB instance.
- storage
Type String - Storage type associated with DB instance.
- Map<String>
- timezone String
- Time zone of the DB instance.
- vpc
Security List<String>Groups - Provides a list of VPC security group elements that the DB instance belongs to.
Supporting Types
GetInstanceMasterUserSecret
- Kms
Key stringId - The Amazon Web Services KMS key identifier that is used to encrypt the secret.
- Secret
Arn string - The Amazon Resource Name (ARN) of the secret.
- Secret
Status string - The status of the secret. Valid Values:
creating
|active
|rotating
|impaired
.
- Kms
Key stringId - The Amazon Web Services KMS key identifier that is used to encrypt the secret.
- Secret
Arn string - The Amazon Resource Name (ARN) of the secret.
- Secret
Status string - The status of the secret. Valid Values:
creating
|active
|rotating
|impaired
.
- kms
Key StringId - The Amazon Web Services KMS key identifier that is used to encrypt the secret.
- secret
Arn String - The Amazon Resource Name (ARN) of the secret.
- secret
Status String - The status of the secret. Valid Values:
creating
|active
|rotating
|impaired
.
- kms
Key stringId - The Amazon Web Services KMS key identifier that is used to encrypt the secret.
- secret
Arn string - The Amazon Resource Name (ARN) of the secret.
- secret
Status string - The status of the secret. Valid Values:
creating
|active
|rotating
|impaired
.
- kms_
key_ strid - The Amazon Web Services KMS key identifier that is used to encrypt the secret.
- secret_
arn str - The Amazon Resource Name (ARN) of the secret.
- secret_
status str - The status of the secret. Valid Values:
creating
|active
|rotating
|impaired
.
- kms
Key StringId - The Amazon Web Services KMS key identifier that is used to encrypt the secret.
- secret
Arn String - The Amazon Resource Name (ARN) of the secret.
- secret
Status String - The status of the secret. Valid Values:
creating
|active
|rotating
|impaired
.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aws
Terraform Provider.
Try AWS Native preview for resources not in the classic version.
AWS Classic v6.42.0 published on Wednesday, Jun 26, 2024 by Pulumi