Oracle Cloud Infrastructure v3.12.0 published on Friday, Nov 21, 2025 by Pulumi
Oracle Cloud Infrastructure v3.12.0 published on Friday, Nov 21, 2025 by Pulumi
This data source provides the list of Oracle Db Aws Keys in Oracle Cloud Infrastructure Dbmulticloud service.
Lists all DB AWS Keys based on the specified filters.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testOracleDbAwsKeys = oci.oci.getDbmulticloudOracleDbAwsKeys({
compartmentId: compartmentId,
displayName: oracleDbAwsKeyDisplayName,
oracleDbAwsConnectorId: testOracleDbAwsConnector.id,
oracleDbAwsKeyId: testOracleDbAwsKey.id,
state: oracleDbAwsKeyState,
});
import pulumi
import pulumi_oci as oci
test_oracle_db_aws_keys = oci.oci.get_dbmulticloud_oracle_db_aws_keys(compartment_id=compartment_id,
display_name=oracle_db_aws_key_display_name,
oracle_db_aws_connector_id=test_oracle_db_aws_connector["id"],
oracle_db_aws_key_id=test_oracle_db_aws_key["id"],
state=oracle_db_aws_key_state)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/oci"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := oci.GetDbmulticloudOracleDbAwsKeys(ctx, &oci.GetDbmulticloudOracleDbAwsKeysArgs{
CompartmentId: compartmentId,
DisplayName: pulumi.StringRef(oracleDbAwsKeyDisplayName),
OracleDbAwsConnectorId: pulumi.StringRef(testOracleDbAwsConnector.Id),
OracleDbAwsKeyId: pulumi.StringRef(testOracleDbAwsKey.Id),
State: pulumi.StringRef(oracleDbAwsKeyState),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testOracleDbAwsKeys = Oci.Oci.GetDbmulticloudOracleDbAwsKeys.Invoke(new()
{
CompartmentId = compartmentId,
DisplayName = oracleDbAwsKeyDisplayName,
OracleDbAwsConnectorId = testOracleDbAwsConnector.Id,
OracleDbAwsKeyId = testOracleDbAwsKey.Id,
State = oracleDbAwsKeyState,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.oci.OciFunctions;
import com.pulumi.oci.oci.inputs.GetDbmulticloudOracleDbAwsKeysArgs;
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 testOracleDbAwsKeys = OciFunctions.getDbmulticloudOracleDbAwsKeys(GetDbmulticloudOracleDbAwsKeysArgs.builder()
.compartmentId(compartmentId)
.displayName(oracleDbAwsKeyDisplayName)
.oracleDbAwsConnectorId(testOracleDbAwsConnector.id())
.oracleDbAwsKeyId(testOracleDbAwsKey.id())
.state(oracleDbAwsKeyState)
.build());
}
}
variables:
testOracleDbAwsKeys:
fn::invoke:
function: oci:oci:getDbmulticloudOracleDbAwsKeys
arguments:
compartmentId: ${compartmentId}
displayName: ${oracleDbAwsKeyDisplayName}
oracleDbAwsConnectorId: ${testOracleDbAwsConnector.id}
oracleDbAwsKeyId: ${testOracleDbAwsKey.id}
state: ${oracleDbAwsKeyState}
Using getDbmulticloudOracleDbAwsKeys
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 getDbmulticloudOracleDbAwsKeys(args: GetDbmulticloudOracleDbAwsKeysArgs, opts?: InvokeOptions): Promise<GetDbmulticloudOracleDbAwsKeysResult>
function getDbmulticloudOracleDbAwsKeysOutput(args: GetDbmulticloudOracleDbAwsKeysOutputArgs, opts?: InvokeOptions): Output<GetDbmulticloudOracleDbAwsKeysResult>def get_dbmulticloud_oracle_db_aws_keys(compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
filters: Optional[Sequence[GetDbmulticloudOracleDbAwsKeysFilter]] = None,
oracle_db_aws_connector_id: Optional[str] = None,
oracle_db_aws_key_id: Optional[str] = None,
state: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetDbmulticloudOracleDbAwsKeysResult
def get_dbmulticloud_oracle_db_aws_keys_output(compartment_id: Optional[pulumi.Input[str]] = None,
display_name: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetDbmulticloudOracleDbAwsKeysFilterArgs]]]] = None,
oracle_db_aws_connector_id: Optional[pulumi.Input[str]] = None,
oracle_db_aws_key_id: Optional[pulumi.Input[str]] = None,
state: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetDbmulticloudOracleDbAwsKeysResult]func GetDbmulticloudOracleDbAwsKeys(ctx *Context, args *GetDbmulticloudOracleDbAwsKeysArgs, opts ...InvokeOption) (*GetDbmulticloudOracleDbAwsKeysResult, error)
func GetDbmulticloudOracleDbAwsKeysOutput(ctx *Context, args *GetDbmulticloudOracleDbAwsKeysOutputArgs, opts ...InvokeOption) GetDbmulticloudOracleDbAwsKeysResultOutput> Note: This function is named GetDbmulticloudOracleDbAwsKeys in the Go SDK.
public static class GetDbmulticloudOracleDbAwsKeys
{
public static Task<GetDbmulticloudOracleDbAwsKeysResult> InvokeAsync(GetDbmulticloudOracleDbAwsKeysArgs args, InvokeOptions? opts = null)
public static Output<GetDbmulticloudOracleDbAwsKeysResult> Invoke(GetDbmulticloudOracleDbAwsKeysInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetDbmulticloudOracleDbAwsKeysResult> getDbmulticloudOracleDbAwsKeys(GetDbmulticloudOracleDbAwsKeysArgs args, InvokeOptions options)
public static Output<GetDbmulticloudOracleDbAwsKeysResult> getDbmulticloudOracleDbAwsKeys(GetDbmulticloudOracleDbAwsKeysArgs args, InvokeOptions options)
fn::invoke:
function: oci:oci/getDbmulticloudOracleDbAwsKeys:getDbmulticloudOracleDbAwsKeys
arguments:
# arguments dictionaryThe following arguments are supported:
- Compartment
Id string - The ID of the compartment.
- Display
Name string - A filter to return Oracle DB AWS Key Resource that match the given display name.
- Filters
List<Get
Dbmulticloud Oracle Db Aws Keys Filter> - Oracle
Db stringAws Connector Id - A filter to return Oracle DB AWS Identity Connector resources that match the specified OCID of the Oracle DB AWS Identity Connector resource.
- Oracle
Db stringAws Key Id - A filter to return Oracle DB AWS Identity Connector Resource that match the given OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB AWS Key resource.
- State string
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- Compartment
Id string - The ID of the compartment.
- Display
Name string - A filter to return Oracle DB AWS Key Resource that match the given display name.
- Filters
[]Get
Dbmulticloud Oracle Db Aws Keys Filter - Oracle
Db stringAws Connector Id - A filter to return Oracle DB AWS Identity Connector resources that match the specified OCID of the Oracle DB AWS Identity Connector resource.
- Oracle
Db stringAws Key Id - A filter to return Oracle DB AWS Identity Connector Resource that match the given OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB AWS Key resource.
- State string
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- compartment
Id String - The ID of the compartment.
- display
Name String - A filter to return Oracle DB AWS Key Resource that match the given display name.
- filters
List<Get
Dbmulticloud Oracle Db Aws Keys Filter> - oracle
Db StringAws Connector Id - A filter to return Oracle DB AWS Identity Connector resources that match the specified OCID of the Oracle DB AWS Identity Connector resource.
- oracle
Db StringAws Key Id - A filter to return Oracle DB AWS Identity Connector Resource that match the given OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB AWS Key resource.
- state String
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- compartment
Id string - The ID of the compartment.
- display
Name string - A filter to return Oracle DB AWS Key Resource that match the given display name.
- filters
Get
Dbmulticloud Oracle Db Aws Keys Filter[] - oracle
Db stringAws Connector Id - A filter to return Oracle DB AWS Identity Connector resources that match the specified OCID of the Oracle DB AWS Identity Connector resource.
- oracle
Db stringAws Key Id - A filter to return Oracle DB AWS Identity Connector Resource that match the given OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB AWS Key resource.
- state string
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- compartment_
id str - The ID of the compartment.
- display_
name str - A filter to return Oracle DB AWS Key Resource that match the given display name.
- filters
Sequence[Get
Dbmulticloud Oracle Db Aws Keys Filter] - oracle_
db_ straws_ connector_ id - A filter to return Oracle DB AWS Identity Connector resources that match the specified OCID of the Oracle DB AWS Identity Connector resource.
- oracle_
db_ straws_ key_ id - A filter to return Oracle DB AWS Identity Connector Resource that match the given OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB AWS Key resource.
- state str
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- compartment
Id String - The ID of the compartment.
- display
Name String - A filter to return Oracle DB AWS Key Resource that match the given display name.
- filters List<Property Map>
- oracle
Db StringAws Connector Id - A filter to return Oracle DB AWS Identity Connector resources that match the specified OCID of the Oracle DB AWS Identity Connector resource.
- oracle
Db StringAws Key Id - A filter to return Oracle DB AWS Identity Connector Resource that match the given OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB AWS Key resource.
- state String
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
getDbmulticloudOracleDbAwsKeys Result
The following output properties are available:
- Compartment
Id string - The Compartment OCID that contains this Oracle DB AWS Key resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Oracle
Db List<GetAws Key Summary Collections Dbmulticloud Oracle Db Aws Keys Oracle Db Aws Key Summary Collection> - The list of oracle_db_aws_key_summary_collection.
- Display
Name string - Oracle DB AWS Key Ring resource name.
- Filters
List<Get
Dbmulticloud Oracle Db Aws Keys Filter> - Oracle
Db stringAws Connector Id - Oracle
Db stringAws Key Id - State string
- The lifecycle state of the Oracle DB AWS Key resource.
- Compartment
Id string - The Compartment OCID that contains this Oracle DB AWS Key resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Oracle
Db []GetAws Key Summary Collections Dbmulticloud Oracle Db Aws Keys Oracle Db Aws Key Summary Collection - The list of oracle_db_aws_key_summary_collection.
- Display
Name string - Oracle DB AWS Key Ring resource name.
- Filters
[]Get
Dbmulticloud Oracle Db Aws Keys Filter - Oracle
Db stringAws Connector Id - Oracle
Db stringAws Key Id - State string
- The lifecycle state of the Oracle DB AWS Key resource.
- compartment
Id String - The Compartment OCID that contains this Oracle DB AWS Key resource.
- id String
- The provider-assigned unique ID for this managed resource.
- oracle
Db List<GetAws Key Summary Collections Dbmulticloud Oracle Db Aws Keys Oracle Db Aws Key Summary Collection> - The list of oracle_db_aws_key_summary_collection.
- display
Name String - Oracle DB AWS Key Ring resource name.
- filters
List<Get
Dbmulticloud Oracle Db Aws Keys Filter> - oracle
Db StringAws Connector Id - oracle
Db StringAws Key Id - state String
- The lifecycle state of the Oracle DB AWS Key resource.
- compartment
Id string - The Compartment OCID that contains this Oracle DB AWS Key resource.
- id string
- The provider-assigned unique ID for this managed resource.
- oracle
Db GetAws Key Summary Collections Dbmulticloud Oracle Db Aws Keys Oracle Db Aws Key Summary Collection[] - The list of oracle_db_aws_key_summary_collection.
- display
Name string - Oracle DB AWS Key Ring resource name.
- filters
Get
Dbmulticloud Oracle Db Aws Keys Filter[] - oracle
Db stringAws Connector Id - oracle
Db stringAws Key Id - state string
- The lifecycle state of the Oracle DB AWS Key resource.
- compartment_
id str - The Compartment OCID that contains this Oracle DB AWS Key resource.
- id str
- The provider-assigned unique ID for this managed resource.
- oracle_
db_ Sequence[Getaws_ key_ summary_ collections Dbmulticloud Oracle Db Aws Keys Oracle Db Aws Key Summary Collection] - The list of oracle_db_aws_key_summary_collection.
- display_
name str - Oracle DB AWS Key Ring resource name.
- filters
Sequence[Get
Dbmulticloud Oracle Db Aws Keys Filter] - oracle_
db_ straws_ connector_ id - oracle_
db_ straws_ key_ id - state str
- The lifecycle state of the Oracle DB AWS Key resource.
- compartment
Id String - The Compartment OCID that contains this Oracle DB AWS Key resource.
- id String
- The provider-assigned unique ID for this managed resource.
- oracle
Db List<Property Map>Aws Key Summary Collections - The list of oracle_db_aws_key_summary_collection.
- display
Name String - Oracle DB AWS Key Ring resource name.
- filters List<Property Map>
- oracle
Db StringAws Connector Id - oracle
Db StringAws Key Id - state String
- The lifecycle state of the Oracle DB AWS Key resource.
Supporting Types
GetDbmulticloudOracleDbAwsKeysFilter
GetDbmulticloudOracleDbAwsKeysOracleDbAwsKeySummaryCollection
GetDbmulticloudOracleDbAwsKeysOracleDbAwsKeySummaryCollectionItem
- Aws
Account stringId - AWS Account ID.
- Aws
Key stringArn - Amazon resource name of AWS Key.
- Compartment
Id string - The ID of the compartment.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - Display
Name string - A filter to return Oracle DB AWS Key Resource that match the given display name.
- Dictionary<string, string>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - Id string
- The OCID of the DB AWS Key Ring resource.
- Is
Aws boolKey Enabled - The Oracle AWS Key resource is enabled or disabled at AWS.
- Lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- Location string
- AWS Key resource location.
- Oracle
Db stringConnector Id - The OCID of the Oracle DB Connector resource.
- Properties Dictionary<string, string>
- AWS Key resource's properties.
- State string
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - Time when the DB AWS Key resource was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'.
- Time
Updated string - Time when the DB AWS Key resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'.
- Type string
- Key resource type.
- Aws
Account stringId - AWS Account ID.
- Aws
Key stringArn - Amazon resource name of AWS Key.
- Compartment
Id string - The ID of the compartment.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - Display
Name string - A filter to return Oracle DB AWS Key Resource that match the given display name.
- map[string]string
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - Id string
- The OCID of the DB AWS Key Ring resource.
- Is
Aws boolKey Enabled - The Oracle AWS Key resource is enabled or disabled at AWS.
- Lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- Location string
- AWS Key resource location.
- Oracle
Db stringConnector Id - The OCID of the Oracle DB Connector resource.
- Properties map[string]string
- AWS Key resource's properties.
- State string
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - Time when the DB AWS Key resource was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'.
- Time
Updated string - Time when the DB AWS Key resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'.
- Type string
- Key resource type.
- aws
Account StringId - AWS Account ID.
- aws
Key StringArn - Amazon resource name of AWS Key.
- compartment
Id String - The ID of the compartment.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - display
Name String - A filter to return Oracle DB AWS Key Resource that match the given display name.
- Map<String,String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - id String
- The OCID of the DB AWS Key Ring resource.
- is
Aws BooleanKey Enabled - The Oracle AWS Key resource is enabled or disabled at AWS.
- lifecycle
State StringDetails - Description of the current lifecycle state in more detail.
- location String
- AWS Key resource location.
- oracle
Db StringConnector Id - The OCID of the Oracle DB Connector resource.
- properties Map<String,String>
- AWS Key resource's properties.
- state String
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - Time when the DB AWS Key resource was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'.
- time
Updated String - Time when the DB AWS Key resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'.
- type String
- Key resource type.
- aws
Account stringId - AWS Account ID.
- aws
Key stringArn - Amazon resource name of AWS Key.
- compartment
Id string - The ID of the compartment.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - display
Name string - A filter to return Oracle DB AWS Key Resource that match the given display name.
- {[key: string]: string}
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - id string
- The OCID of the DB AWS Key Ring resource.
- is
Aws booleanKey Enabled - The Oracle AWS Key resource is enabled or disabled at AWS.
- lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- location string
- AWS Key resource location.
- oracle
Db stringConnector Id - The OCID of the Oracle DB Connector resource.
- properties {[key: string]: string}
- AWS Key resource's properties.
- state string
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created string - Time when the DB AWS Key resource was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'.
- time
Updated string - Time when the DB AWS Key resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'.
- type string
- Key resource type.
- aws_
account_ strid - AWS Account ID.
- aws_
key_ strarn - Amazon resource name of AWS Key.
- compartment_
id str - The ID of the compartment.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - display_
name str - A filter to return Oracle DB AWS Key Resource that match the given display name.
- Mapping[str, str]
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - id str
- The OCID of the DB AWS Key Ring resource.
- is_
aws_ boolkey_ enabled - The Oracle AWS Key resource is enabled or disabled at AWS.
- lifecycle_
state_ strdetails - Description of the current lifecycle state in more detail.
- location str
- AWS Key resource location.
- oracle_
db_ strconnector_ id - The OCID of the Oracle DB Connector resource.
- properties Mapping[str, str]
- AWS Key resource's properties.
- state str
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time_
created str - Time when the DB AWS Key resource was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'.
- time_
updated str - Time when the DB AWS Key resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'.
- type str
- Key resource type.
- aws
Account StringId - AWS Account ID.
- aws
Key StringArn - Amazon resource name of AWS Key.
- compartment
Id String - The ID of the compartment.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - display
Name String - A filter to return Oracle DB AWS Key Resource that match the given display name.
- Map<String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - id String
- The OCID of the DB AWS Key Ring resource.
- is
Aws BooleanKey Enabled - The Oracle AWS Key resource is enabled or disabled at AWS.
- lifecycle
State StringDetails - Description of the current lifecycle state in more detail.
- location String
- AWS Key resource location.
- oracle
Db StringConnector Id - The OCID of the Oracle DB Connector resource.
- properties Map<String>
- AWS Key resource's properties.
- state String
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - Time when the DB AWS Key resource was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'.
- time
Updated String - Time when the DB AWS Key resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'.
- type String
- Key resource type.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ociTerraform Provider.
Oracle Cloud Infrastructure v3.12.0 published on Friday, Nov 21, 2025 by Pulumi
