1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. oci
  5. getDbmulticloudOracleDbAwsIdentityConnectors
Oracle Cloud Infrastructure v3.12.0 published on Friday, Nov 21, 2025 by Pulumi
oci logo
Oracle Cloud Infrastructure v3.12.0 published on Friday, Nov 21, 2025 by Pulumi

    This data source provides the list of Oracle Db Aws Identity Connectors in Oracle Cloud Infrastructure Dbmulticloud service.

    Lists all Oracle DB AWS Identity Connectors based on the specified filters.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testOracleDbAwsIdentityConnectors = oci.oci.getDbmulticloudOracleDbAwsIdentityConnectors({
        compartmentId: compartmentId,
        displayName: oracleDbAwsIdentityConnectorDisplayName,
        resourceId: testResource.id,
        state: oracleDbAwsIdentityConnectorState,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_oracle_db_aws_identity_connectors = oci.oci.get_dbmulticloud_oracle_db_aws_identity_connectors(compartment_id=compartment_id,
        display_name=oracle_db_aws_identity_connector_display_name,
        resource_id=test_resource["id"],
        state=oracle_db_aws_identity_connector_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.GetDbmulticloudOracleDbAwsIdentityConnectors(ctx, &oci.GetDbmulticloudOracleDbAwsIdentityConnectorsArgs{
    			CompartmentId: compartmentId,
    			DisplayName:   pulumi.StringRef(oracleDbAwsIdentityConnectorDisplayName),
    			ResourceId:    pulumi.StringRef(testResource.Id),
    			State:         pulumi.StringRef(oracleDbAwsIdentityConnectorState),
    		}, 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 testOracleDbAwsIdentityConnectors = Oci.Oci.GetDbmulticloudOracleDbAwsIdentityConnectors.Invoke(new()
        {
            CompartmentId = compartmentId,
            DisplayName = oracleDbAwsIdentityConnectorDisplayName,
            ResourceId = testResource.Id,
            State = oracleDbAwsIdentityConnectorState,
        });
    
    });
    
    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.GetDbmulticloudOracleDbAwsIdentityConnectorsArgs;
    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 testOracleDbAwsIdentityConnectors = OciFunctions.getDbmulticloudOracleDbAwsIdentityConnectors(GetDbmulticloudOracleDbAwsIdentityConnectorsArgs.builder()
                .compartmentId(compartmentId)
                .displayName(oracleDbAwsIdentityConnectorDisplayName)
                .resourceId(testResource.id())
                .state(oracleDbAwsIdentityConnectorState)
                .build());
    
        }
    }
    
    variables:
      testOracleDbAwsIdentityConnectors:
        fn::invoke:
          function: oci:oci:getDbmulticloudOracleDbAwsIdentityConnectors
          arguments:
            compartmentId: ${compartmentId}
            displayName: ${oracleDbAwsIdentityConnectorDisplayName}
            resourceId: ${testResource.id}
            state: ${oracleDbAwsIdentityConnectorState}
    

    Using getDbmulticloudOracleDbAwsIdentityConnectors

    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 getDbmulticloudOracleDbAwsIdentityConnectors(args: GetDbmulticloudOracleDbAwsIdentityConnectorsArgs, opts?: InvokeOptions): Promise<GetDbmulticloudOracleDbAwsIdentityConnectorsResult>
    function getDbmulticloudOracleDbAwsIdentityConnectorsOutput(args: GetDbmulticloudOracleDbAwsIdentityConnectorsOutputArgs, opts?: InvokeOptions): Output<GetDbmulticloudOracleDbAwsIdentityConnectorsResult>
    def get_dbmulticloud_oracle_db_aws_identity_connectors(compartment_id: Optional[str] = None,
                                                           display_name: Optional[str] = None,
                                                           filters: Optional[Sequence[GetDbmulticloudOracleDbAwsIdentityConnectorsFilter]] = None,
                                                           resource_id: Optional[str] = None,
                                                           state: Optional[str] = None,
                                                           opts: Optional[InvokeOptions] = None) -> GetDbmulticloudOracleDbAwsIdentityConnectorsResult
    def get_dbmulticloud_oracle_db_aws_identity_connectors_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                                           display_name: Optional[pulumi.Input[str]] = None,
                                                           filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetDbmulticloudOracleDbAwsIdentityConnectorsFilterArgs]]]] = None,
                                                           resource_id: Optional[pulumi.Input[str]] = None,
                                                           state: Optional[pulumi.Input[str]] = None,
                                                           opts: Optional[InvokeOptions] = None) -> Output[GetDbmulticloudOracleDbAwsIdentityConnectorsResult]
    func GetDbmulticloudOracleDbAwsIdentityConnectors(ctx *Context, args *GetDbmulticloudOracleDbAwsIdentityConnectorsArgs, opts ...InvokeOption) (*GetDbmulticloudOracleDbAwsIdentityConnectorsResult, error)
    func GetDbmulticloudOracleDbAwsIdentityConnectorsOutput(ctx *Context, args *GetDbmulticloudOracleDbAwsIdentityConnectorsOutputArgs, opts ...InvokeOption) GetDbmulticloudOracleDbAwsIdentityConnectorsResultOutput

    > Note: This function is named GetDbmulticloudOracleDbAwsIdentityConnectors in the Go SDK.

    public static class GetDbmulticloudOracleDbAwsIdentityConnectors 
    {
        public static Task<GetDbmulticloudOracleDbAwsIdentityConnectorsResult> InvokeAsync(GetDbmulticloudOracleDbAwsIdentityConnectorsArgs args, InvokeOptions? opts = null)
        public static Output<GetDbmulticloudOracleDbAwsIdentityConnectorsResult> Invoke(GetDbmulticloudOracleDbAwsIdentityConnectorsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetDbmulticloudOracleDbAwsIdentityConnectorsResult> getDbmulticloudOracleDbAwsIdentityConnectors(GetDbmulticloudOracleDbAwsIdentityConnectorsArgs args, InvokeOptions options)
    public static Output<GetDbmulticloudOracleDbAwsIdentityConnectorsResult> getDbmulticloudOracleDbAwsIdentityConnectors(GetDbmulticloudOracleDbAwsIdentityConnectorsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:oci/getDbmulticloudOracleDbAwsIdentityConnectors:getDbmulticloudOracleDbAwsIdentityConnectors
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The ID of the compartment.
    DisplayName string
    A filter to return Oracle DB AWS Identity Connector Resource that match the given display name.
    Filters List<GetDbmulticloudOracleDbAwsIdentityConnectorsFilter>
    ResourceId string
    A filter to return Oracle DB Identity Connector resource that match the given resource OCID.
    State string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    CompartmentId string
    The ID of the compartment.
    DisplayName string
    A filter to return Oracle DB AWS Identity Connector Resource that match the given display name.
    Filters []GetDbmulticloudOracleDbAwsIdentityConnectorsFilter
    ResourceId string
    A filter to return Oracle DB Identity Connector resource that match the given resource OCID.
    State string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    compartmentId String
    The ID of the compartment.
    displayName String
    A filter to return Oracle DB AWS Identity Connector Resource that match the given display name.
    filters List<GetDbmulticloudOracleDbAwsIdentityConnectorsFilter>
    resourceId String
    A filter to return Oracle DB Identity Connector resource that match the given resource OCID.
    state String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    compartmentId string
    The ID of the compartment.
    displayName string
    A filter to return Oracle DB AWS Identity Connector Resource that match the given display name.
    filters GetDbmulticloudOracleDbAwsIdentityConnectorsFilter[]
    resourceId string
    A filter to return Oracle DB Identity Connector resource that match the given resource OCID.
    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 Identity Connector Resource that match the given display name.
    filters Sequence[GetDbmulticloudOracleDbAwsIdentityConnectorsFilter]
    resource_id str
    A filter to return Oracle DB Identity Connector resource that match the given resource OCID.
    state str
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    compartmentId String
    The ID of the compartment.
    displayName String
    A filter to return Oracle DB AWS Identity Connector Resource that match the given display name.
    filters List<Property Map>
    resourceId String
    A filter to return Oracle DB Identity Connector resource that match the given resource OCID.
    state String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.

    getDbmulticloudOracleDbAwsIdentityConnectors Result

    The following output properties are available:

    CompartmentId string
    The OCID of the compartment that contains Oracle DB AWS Identity Connector resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    OracleDbAwsIdentityConnectorSummaryCollections List<GetDbmulticloudOracleDbAwsIdentityConnectorsOracleDbAwsIdentityConnectorSummaryCollection>
    The list of oracle_db_aws_identity_connector_summary_collection.
    DisplayName string
    Oracle DB AWS Identity Connector resource name.
    Filters List<GetDbmulticloudOracleDbAwsIdentityConnectorsFilter>
    ResourceId string
    The OCID of the AWS VM Cluster resource.
    State string
    The current lifecycle state of the AWS Identity Connector resource.
    CompartmentId string
    The OCID of the compartment that contains Oracle DB AWS Identity Connector resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    OracleDbAwsIdentityConnectorSummaryCollections []GetDbmulticloudOracleDbAwsIdentityConnectorsOracleDbAwsIdentityConnectorSummaryCollection
    The list of oracle_db_aws_identity_connector_summary_collection.
    DisplayName string
    Oracle DB AWS Identity Connector resource name.
    Filters []GetDbmulticloudOracleDbAwsIdentityConnectorsFilter
    ResourceId string
    The OCID of the AWS VM Cluster resource.
    State string
    The current lifecycle state of the AWS Identity Connector resource.
    compartmentId String
    The OCID of the compartment that contains Oracle DB AWS Identity Connector resource.
    id String
    The provider-assigned unique ID for this managed resource.
    oracleDbAwsIdentityConnectorSummaryCollections List<GetDbmulticloudOracleDbAwsIdentityConnectorsOracleDbAwsIdentityConnectorSummaryCollection>
    The list of oracle_db_aws_identity_connector_summary_collection.
    displayName String
    Oracle DB AWS Identity Connector resource name.
    filters List<GetDbmulticloudOracleDbAwsIdentityConnectorsFilter>
    resourceId String
    The OCID of the AWS VM Cluster resource.
    state String
    The current lifecycle state of the AWS Identity Connector resource.
    compartmentId string
    The OCID of the compartment that contains Oracle DB AWS Identity Connector resource.
    id string
    The provider-assigned unique ID for this managed resource.
    oracleDbAwsIdentityConnectorSummaryCollections GetDbmulticloudOracleDbAwsIdentityConnectorsOracleDbAwsIdentityConnectorSummaryCollection[]
    The list of oracle_db_aws_identity_connector_summary_collection.
    displayName string
    Oracle DB AWS Identity Connector resource name.
    filters GetDbmulticloudOracleDbAwsIdentityConnectorsFilter[]
    resourceId string
    The OCID of the AWS VM Cluster resource.
    state string
    The current lifecycle state of the AWS Identity Connector resource.
    compartment_id str
    The OCID of the compartment that contains Oracle DB AWS Identity Connector resource.
    id str
    The provider-assigned unique ID for this managed resource.
    oracle_db_aws_identity_connector_summary_collections Sequence[GetDbmulticloudOracleDbAwsIdentityConnectorsOracleDbAwsIdentityConnectorSummaryCollection]
    The list of oracle_db_aws_identity_connector_summary_collection.
    display_name str
    Oracle DB AWS Identity Connector resource name.
    filters Sequence[GetDbmulticloudOracleDbAwsIdentityConnectorsFilter]
    resource_id str
    The OCID of the AWS VM Cluster resource.
    state str
    The current lifecycle state of the AWS Identity Connector resource.
    compartmentId String
    The OCID of the compartment that contains Oracle DB AWS Identity Connector resource.
    id String
    The provider-assigned unique ID for this managed resource.
    oracleDbAwsIdentityConnectorSummaryCollections List<Property Map>
    The list of oracle_db_aws_identity_connector_summary_collection.
    displayName String
    Oracle DB AWS Identity Connector resource name.
    filters List<Property Map>
    resourceId String
    The OCID of the AWS VM Cluster resource.
    state String
    The current lifecycle state of the AWS Identity Connector resource.

    Supporting Types

    GetDbmulticloudOracleDbAwsIdentityConnectorsFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    GetDbmulticloudOracleDbAwsIdentityConnectorsOracleDbAwsIdentityConnectorSummaryCollection

    GetDbmulticloudOracleDbAwsIdentityConnectorsOracleDbAwsIdentityConnectorSummaryCollectionItem

    AwsAccountId string
    AWS Account ID.
    AwsLocation string
    AWS resource location.
    AwsStsPrivateEndpoint string
    Private endpoint of AWS Security Token Service.
    CompartmentId string
    The ID of the compartment.
    DefinedTags 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"}
    DisplayName string
    A filter to return Oracle DB AWS Identity Connector Resource that match the given display name.
    FreeformTags 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 Oracle DB AWS Identity Connector resource.
    IssuerUrl string
    OIDC token issuer Url.
    LifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    OidcScope string
    Oracle Cloud Infrastructure IAM Domain scope for issuer URL.
    ResourceId string
    A filter to return Oracle DB Identity Connector resource that match the given resource OCID.
    ServiceRoleDetails List<GetDbmulticloudOracleDbAwsIdentityConnectorsOracleDbAwsIdentityConnectorSummaryCollectionItemServiceRoleDetail>
    Service role details and respective Amazon resource nam of Role.
    State string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    Time when the Oracle DB AWS Identity Connector resource was created expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
    TimeUpdated string
    Time when the Oracle DB AWS Identity Connector resource was last modified expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
    AwsAccountId string
    AWS Account ID.
    AwsLocation string
    AWS resource location.
    AwsStsPrivateEndpoint string
    Private endpoint of AWS Security Token Service.
    CompartmentId string
    The ID of the compartment.
    DefinedTags 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"}
    DisplayName string
    A filter to return Oracle DB AWS Identity Connector Resource that match the given display name.
    FreeformTags 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 Oracle DB AWS Identity Connector resource.
    IssuerUrl string
    OIDC token issuer Url.
    LifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    OidcScope string
    Oracle Cloud Infrastructure IAM Domain scope for issuer URL.
    ResourceId string
    A filter to return Oracle DB Identity Connector resource that match the given resource OCID.
    ServiceRoleDetails []GetDbmulticloudOracleDbAwsIdentityConnectorsOracleDbAwsIdentityConnectorSummaryCollectionItemServiceRoleDetail
    Service role details and respective Amazon resource nam of Role.
    State string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    Time when the Oracle DB AWS Identity Connector resource was created expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
    TimeUpdated string
    Time when the Oracle DB AWS Identity Connector resource was last modified expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
    awsAccountId String
    AWS Account ID.
    awsLocation String
    AWS resource location.
    awsStsPrivateEndpoint String
    Private endpoint of AWS Security Token Service.
    compartmentId String
    The ID of the compartment.
    definedTags 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"}
    displayName String
    A filter to return Oracle DB AWS Identity Connector Resource that match the given display name.
    freeformTags 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 Oracle DB AWS Identity Connector resource.
    issuerUrl String
    OIDC token issuer Url.
    lifecycleStateDetails String
    Description of the current lifecycle state in more detail.
    oidcScope String
    Oracle Cloud Infrastructure IAM Domain scope for issuer URL.
    resourceId String
    A filter to return Oracle DB Identity Connector resource that match the given resource OCID.
    serviceRoleDetails List<GetDbmulticloudOracleDbAwsIdentityConnectorsOracleDbAwsIdentityConnectorSummaryCollectionItemServiceRoleDetail>
    Service role details and respective Amazon resource nam of Role.
    state String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    Time when the Oracle DB AWS Identity Connector resource was created expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
    timeUpdated String
    Time when the Oracle DB AWS Identity Connector resource was last modified expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
    awsAccountId string
    AWS Account ID.
    awsLocation string
    AWS resource location.
    awsStsPrivateEndpoint string
    Private endpoint of AWS Security Token Service.
    compartmentId string
    The ID of the compartment.
    definedTags {[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"}
    displayName string
    A filter to return Oracle DB AWS Identity Connector Resource that match the given display name.
    freeformTags {[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 Oracle DB AWS Identity Connector resource.
    issuerUrl string
    OIDC token issuer Url.
    lifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    oidcScope string
    Oracle Cloud Infrastructure IAM Domain scope for issuer URL.
    resourceId string
    A filter to return Oracle DB Identity Connector resource that match the given resource OCID.
    serviceRoleDetails GetDbmulticloudOracleDbAwsIdentityConnectorsOracleDbAwsIdentityConnectorSummaryCollectionItemServiceRoleDetail[]
    Service role details and respective Amazon resource nam of Role.
    state string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    Time when the Oracle DB AWS Identity Connector resource was created expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
    timeUpdated string
    Time when the Oracle DB AWS Identity Connector resource was last modified expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
    aws_account_id str
    AWS Account ID.
    aws_location str
    AWS resource location.
    aws_sts_private_endpoint str
    Private endpoint of AWS Security Token Service.
    compartment_id str
    The ID of the compartment.
    defined_tags 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 Identity Connector Resource that match the given display name.
    freeform_tags 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 Oracle DB AWS Identity Connector resource.
    issuer_url str
    OIDC token issuer Url.
    lifecycle_state_details str
    Description of the current lifecycle state in more detail.
    oidc_scope str
    Oracle Cloud Infrastructure IAM Domain scope for issuer URL.
    resource_id str
    A filter to return Oracle DB Identity Connector resource that match the given resource OCID.
    service_role_details Sequence[GetDbmulticloudOracleDbAwsIdentityConnectorsOracleDbAwsIdentityConnectorSummaryCollectionItemServiceRoleDetail]
    Service role details and respective Amazon resource nam of Role.
    state str
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    system_tags 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 Oracle DB AWS Identity Connector resource was created expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
    time_updated str
    Time when the Oracle DB AWS Identity Connector resource was last modified expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
    awsAccountId String
    AWS Account ID.
    awsLocation String
    AWS resource location.
    awsStsPrivateEndpoint String
    Private endpoint of AWS Security Token Service.
    compartmentId String
    The ID of the compartment.
    definedTags 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"}
    displayName String
    A filter to return Oracle DB AWS Identity Connector Resource that match the given display name.
    freeformTags 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 Oracle DB AWS Identity Connector resource.
    issuerUrl String
    OIDC token issuer Url.
    lifecycleStateDetails String
    Description of the current lifecycle state in more detail.
    oidcScope String
    Oracle Cloud Infrastructure IAM Domain scope for issuer URL.
    resourceId String
    A filter to return Oracle DB Identity Connector resource that match the given resource OCID.
    serviceRoleDetails List<Property Map>
    Service role details and respective Amazon resource nam of Role.
    state String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    Time when the Oracle DB AWS Identity Connector resource was created expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
    timeUpdated String
    Time when the Oracle DB AWS Identity Connector resource was last modified expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.

    GetDbmulticloudOracleDbAwsIdentityConnectorsOracleDbAwsIdentityConnectorSummaryCollectionItemServiceRoleDetail

    AssumeRoleStatus string
    Assume role status.
    AwsNodes List<GetDbmulticloudOracleDbAwsIdentityConnectorsOracleDbAwsIdentityConnectorSummaryCollectionItemServiceRoleDetailAwsNode>
    List of all VMs where AWS Identity Connector is configured for Oracle DB Cloud VM Cluster.
    RoleArn string
    Amazon resource name AWSof the IAM role.
    ServicePrivateEndpoint string
    Private endpoint of the AWS service.
    ServiceType string
    Type of service.
    AssumeRoleStatus string
    Assume role status.
    AwsNodes []GetDbmulticloudOracleDbAwsIdentityConnectorsOracleDbAwsIdentityConnectorSummaryCollectionItemServiceRoleDetailAwsNode
    List of all VMs where AWS Identity Connector is configured for Oracle DB Cloud VM Cluster.
    RoleArn string
    Amazon resource name AWSof the IAM role.
    ServicePrivateEndpoint string
    Private endpoint of the AWS service.
    ServiceType string
    Type of service.
    assumeRoleStatus String
    Assume role status.
    awsNodes List<GetDbmulticloudOracleDbAwsIdentityConnectorsOracleDbAwsIdentityConnectorSummaryCollectionItemServiceRoleDetailAwsNode>
    List of all VMs where AWS Identity Connector is configured for Oracle DB Cloud VM Cluster.
    roleArn String
    Amazon resource name AWSof the IAM role.
    servicePrivateEndpoint String
    Private endpoint of the AWS service.
    serviceType String
    Type of service.
    assumeRoleStatus string
    Assume role status.
    awsNodes GetDbmulticloudOracleDbAwsIdentityConnectorsOracleDbAwsIdentityConnectorSummaryCollectionItemServiceRoleDetailAwsNode[]
    List of all VMs where AWS Identity Connector is configured for Oracle DB Cloud VM Cluster.
    roleArn string
    Amazon resource name AWSof the IAM role.
    servicePrivateEndpoint string
    Private endpoint of the AWS service.
    serviceType string
    Type of service.
    assume_role_status str
    Assume role status.
    aws_nodes Sequence[GetDbmulticloudOracleDbAwsIdentityConnectorsOracleDbAwsIdentityConnectorSummaryCollectionItemServiceRoleDetailAwsNode]
    List of all VMs where AWS Identity Connector is configured for Oracle DB Cloud VM Cluster.
    role_arn str
    Amazon resource name AWSof the IAM role.
    service_private_endpoint str
    Private endpoint of the AWS service.
    service_type str
    Type of service.
    assumeRoleStatus String
    Assume role status.
    awsNodes List<Property Map>
    List of all VMs where AWS Identity Connector is configured for Oracle DB Cloud VM Cluster.
    roleArn String
    Amazon resource name AWSof the IAM role.
    servicePrivateEndpoint String
    Private endpoint of the AWS service.
    serviceType String
    Type of service.

    GetDbmulticloudOracleDbAwsIdentityConnectorsOracleDbAwsIdentityConnectorSummaryCollectionItemServiceRoleDetailAwsNode

    HostId string
    AWS host ID.
    HostName string
    AWS Host name or Identity Connector name.
    Status string
    The current status of the AWS Identity Connector resource.
    TimeLastChecked string
    Time when the AWS Identity Connector's status was checked RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
    HostId string
    AWS host ID.
    HostName string
    AWS Host name or Identity Connector name.
    Status string
    The current status of the AWS Identity Connector resource.
    TimeLastChecked string
    Time when the AWS Identity Connector's status was checked RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
    hostId String
    AWS host ID.
    hostName String
    AWS Host name or Identity Connector name.
    status String
    The current status of the AWS Identity Connector resource.
    timeLastChecked String
    Time when the AWS Identity Connector's status was checked RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
    hostId string
    AWS host ID.
    hostName string
    AWS Host name or Identity Connector name.
    status string
    The current status of the AWS Identity Connector resource.
    timeLastChecked string
    Time when the AWS Identity Connector's status was checked RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
    host_id str
    AWS host ID.
    host_name str
    AWS Host name or Identity Connector name.
    status str
    The current status of the AWS Identity Connector resource.
    time_last_checked str
    Time when the AWS Identity Connector's status was checked RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
    hostId String
    AWS host ID.
    hostName String
    AWS Host name or Identity Connector name.
    status String
    The current status of the AWS Identity Connector resource.
    timeLastChecked String
    Time when the AWS Identity Connector's status was checked RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v3.12.0 published on Friday, Nov 21, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate