1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. oci
  5. DbmulticloudOracleDbAwsIdentityConnector
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

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testOracleDbAwsIdentityConnector = new oci.oci.DbmulticloudOracleDbAwsIdentityConnector("test_oracle_db_aws_identity_connector", {
        awsLocation: oracleDbAwsIdentityConnectorAwsLocation,
        compartmentId: compartmentId,
        displayName: oracleDbAwsIdentityConnectorDisplayName,
        issuerUrl: oracleDbAwsIdentityConnectorIssuerUrl,
        oidcScope: oracleDbAwsIdentityConnectorOidcScope,
        resourceId: testResource.id,
        serviceRoleDetails: [{
            roleArn: oracleDbAwsIdentityConnectorServiceRoleDetailsRoleArn,
            servicePrivateEndpoint: oracleDbAwsIdentityConnectorServiceRoleDetailsServicePrivateEndpoint,
            serviceType: oracleDbAwsIdentityConnectorServiceRoleDetailsServiceType,
        }],
        awsAccountId: testAwsAccount.id,
        awsStsPrivateEndpoint: oracleDbAwsIdentityConnectorAwsStsPrivateEndpoint,
        definedTags: {
            "Operations.CostCenter": "42",
        },
        freeformTags: {
            Department: "Finance",
        },
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_oracle_db_aws_identity_connector = oci.oci.DbmulticloudOracleDbAwsIdentityConnector("test_oracle_db_aws_identity_connector",
        aws_location=oracle_db_aws_identity_connector_aws_location,
        compartment_id=compartment_id,
        display_name=oracle_db_aws_identity_connector_display_name,
        issuer_url=oracle_db_aws_identity_connector_issuer_url,
        oidc_scope=oracle_db_aws_identity_connector_oidc_scope,
        resource_id=test_resource["id"],
        service_role_details=[{
            "role_arn": oracle_db_aws_identity_connector_service_role_details_role_arn,
            "service_private_endpoint": oracle_db_aws_identity_connector_service_role_details_service_private_endpoint,
            "service_type": oracle_db_aws_identity_connector_service_role_details_service_type,
        }],
        aws_account_id=test_aws_account["id"],
        aws_sts_private_endpoint=oracle_db_aws_identity_connector_aws_sts_private_endpoint,
        defined_tags={
            "Operations.CostCenter": "42",
        },
        freeform_tags={
            "Department": "Finance",
        })
    
    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.NewDbmulticloudOracleDbAwsIdentityConnector(ctx, "test_oracle_db_aws_identity_connector", &oci.DbmulticloudOracleDbAwsIdentityConnectorArgs{
    			AwsLocation:   pulumi.Any(oracleDbAwsIdentityConnectorAwsLocation),
    			CompartmentId: pulumi.Any(compartmentId),
    			DisplayName:   pulumi.Any(oracleDbAwsIdentityConnectorDisplayName),
    			IssuerUrl:     pulumi.Any(oracleDbAwsIdentityConnectorIssuerUrl),
    			OidcScope:     pulumi.Any(oracleDbAwsIdentityConnectorOidcScope),
    			ResourceId:    pulumi.Any(testResource.Id),
    			ServiceRoleDetails: oci.DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailArray{
    				&oci.DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailArgs{
    					RoleArn:                pulumi.Any(oracleDbAwsIdentityConnectorServiceRoleDetailsRoleArn),
    					ServicePrivateEndpoint: pulumi.Any(oracleDbAwsIdentityConnectorServiceRoleDetailsServicePrivateEndpoint),
    					ServiceType:            pulumi.Any(oracleDbAwsIdentityConnectorServiceRoleDetailsServiceType),
    				},
    			},
    			AwsAccountId:          pulumi.Any(testAwsAccount.Id),
    			AwsStsPrivateEndpoint: pulumi.Any(oracleDbAwsIdentityConnectorAwsStsPrivateEndpoint),
    			DefinedTags: pulumi.StringMap{
    				"Operations.CostCenter": pulumi.String("42"),
    			},
    			FreeformTags: pulumi.StringMap{
    				"Department": pulumi.String("Finance"),
    			},
    		})
    		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 testOracleDbAwsIdentityConnector = new Oci.Oci.DbmulticloudOracleDbAwsIdentityConnector("test_oracle_db_aws_identity_connector", new()
        {
            AwsLocation = oracleDbAwsIdentityConnectorAwsLocation,
            CompartmentId = compartmentId,
            DisplayName = oracleDbAwsIdentityConnectorDisplayName,
            IssuerUrl = oracleDbAwsIdentityConnectorIssuerUrl,
            OidcScope = oracleDbAwsIdentityConnectorOidcScope,
            ResourceId = testResource.Id,
            ServiceRoleDetails = new[]
            {
                new Oci.Oci.Inputs.DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailArgs
                {
                    RoleArn = oracleDbAwsIdentityConnectorServiceRoleDetailsRoleArn,
                    ServicePrivateEndpoint = oracleDbAwsIdentityConnectorServiceRoleDetailsServicePrivateEndpoint,
                    ServiceType = oracleDbAwsIdentityConnectorServiceRoleDetailsServiceType,
                },
            },
            AwsAccountId = testAwsAccount.Id,
            AwsStsPrivateEndpoint = oracleDbAwsIdentityConnectorAwsStsPrivateEndpoint,
            DefinedTags = 
            {
                { "Operations.CostCenter", "42" },
            },
            FreeformTags = 
            {
                { "Department", "Finance" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.oci.DbmulticloudOracleDbAwsIdentityConnector;
    import com.pulumi.oci.oci.DbmulticloudOracleDbAwsIdentityConnectorArgs;
    import com.pulumi.oci.oci.inputs.DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailArgs;
    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) {
            var testOracleDbAwsIdentityConnector = new DbmulticloudOracleDbAwsIdentityConnector("testOracleDbAwsIdentityConnector", DbmulticloudOracleDbAwsIdentityConnectorArgs.builder()
                .awsLocation(oracleDbAwsIdentityConnectorAwsLocation)
                .compartmentId(compartmentId)
                .displayName(oracleDbAwsIdentityConnectorDisplayName)
                .issuerUrl(oracleDbAwsIdentityConnectorIssuerUrl)
                .oidcScope(oracleDbAwsIdentityConnectorOidcScope)
                .resourceId(testResource.id())
                .serviceRoleDetails(DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailArgs.builder()
                    .roleArn(oracleDbAwsIdentityConnectorServiceRoleDetailsRoleArn)
                    .servicePrivateEndpoint(oracleDbAwsIdentityConnectorServiceRoleDetailsServicePrivateEndpoint)
                    .serviceType(oracleDbAwsIdentityConnectorServiceRoleDetailsServiceType)
                    .build())
                .awsAccountId(testAwsAccount.id())
                .awsStsPrivateEndpoint(oracleDbAwsIdentityConnectorAwsStsPrivateEndpoint)
                .definedTags(Map.of("Operations.CostCenter", "42"))
                .freeformTags(Map.of("Department", "Finance"))
                .build());
    
        }
    }
    
    resources:
      testOracleDbAwsIdentityConnector:
        type: oci:oci:DbmulticloudOracleDbAwsIdentityConnector
        name: test_oracle_db_aws_identity_connector
        properties:
          awsLocation: ${oracleDbAwsIdentityConnectorAwsLocation}
          compartmentId: ${compartmentId}
          displayName: ${oracleDbAwsIdentityConnectorDisplayName}
          issuerUrl: ${oracleDbAwsIdentityConnectorIssuerUrl}
          oidcScope: ${oracleDbAwsIdentityConnectorOidcScope}
          resourceId: ${testResource.id}
          serviceRoleDetails:
            - roleArn: ${oracleDbAwsIdentityConnectorServiceRoleDetailsRoleArn}
              servicePrivateEndpoint: ${oracleDbAwsIdentityConnectorServiceRoleDetailsServicePrivateEndpoint}
              serviceType: ${oracleDbAwsIdentityConnectorServiceRoleDetailsServiceType}
          awsAccountId: ${testAwsAccount.id}
          awsStsPrivateEndpoint: ${oracleDbAwsIdentityConnectorAwsStsPrivateEndpoint}
          definedTags:
            Operations.CostCenter: '42'
          freeformTags:
            Department: Finance
    

    Create DbmulticloudOracleDbAwsIdentityConnector Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new DbmulticloudOracleDbAwsIdentityConnector(name: string, args: DbmulticloudOracleDbAwsIdentityConnectorArgs, opts?: CustomResourceOptions);
    @overload
    def DbmulticloudOracleDbAwsIdentityConnector(resource_name: str,
                                                 args: DbmulticloudOracleDbAwsIdentityConnectorArgs,
                                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def DbmulticloudOracleDbAwsIdentityConnector(resource_name: str,
                                                 opts: Optional[ResourceOptions] = None,
                                                 aws_location: Optional[str] = None,
                                                 compartment_id: Optional[str] = None,
                                                 display_name: Optional[str] = None,
                                                 issuer_url: Optional[str] = None,
                                                 oidc_scope: Optional[str] = None,
                                                 resource_id: Optional[str] = None,
                                                 service_role_details: Optional[Sequence[DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailArgs]] = None,
                                                 aws_account_id: Optional[str] = None,
                                                 aws_sts_private_endpoint: Optional[str] = None,
                                                 defined_tags: Optional[Mapping[str, str]] = None,
                                                 freeform_tags: Optional[Mapping[str, str]] = None)
    func NewDbmulticloudOracleDbAwsIdentityConnector(ctx *Context, name string, args DbmulticloudOracleDbAwsIdentityConnectorArgs, opts ...ResourceOption) (*DbmulticloudOracleDbAwsIdentityConnector, error)
    public DbmulticloudOracleDbAwsIdentityConnector(string name, DbmulticloudOracleDbAwsIdentityConnectorArgs args, CustomResourceOptions? opts = null)
    public DbmulticloudOracleDbAwsIdentityConnector(String name, DbmulticloudOracleDbAwsIdentityConnectorArgs args)
    public DbmulticloudOracleDbAwsIdentityConnector(String name, DbmulticloudOracleDbAwsIdentityConnectorArgs args, CustomResourceOptions options)
    
    type: oci:oci:DbmulticloudOracleDbAwsIdentityConnector
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args DbmulticloudOracleDbAwsIdentityConnectorArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args DbmulticloudOracleDbAwsIdentityConnectorArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args DbmulticloudOracleDbAwsIdentityConnectorArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DbmulticloudOracleDbAwsIdentityConnectorArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DbmulticloudOracleDbAwsIdentityConnectorArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var dbmulticloudOracleDbAwsIdentityConnectorResource = new Oci.Oci.DbmulticloudOracleDbAwsIdentityConnector("dbmulticloudOracleDbAwsIdentityConnectorResource", new()
    {
        AwsLocation = "string",
        CompartmentId = "string",
        DisplayName = "string",
        IssuerUrl = "string",
        OidcScope = "string",
        ResourceId = "string",
        ServiceRoleDetails = new[]
        {
            new Oci.Oci.Inputs.DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailArgs
            {
                RoleArn = "string",
                ServicePrivateEndpoint = "string",
                ServiceType = "string",
                AssumeRoleStatus = "string",
                AwsNodes = new[]
                {
                    new Oci.Oci.Inputs.DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailAwsNodeArgs
                    {
                        HostId = "string",
                        HostName = "string",
                        Status = "string",
                        TimeLastChecked = "string",
                    },
                },
            },
        },
        AwsAccountId = "string",
        AwsStsPrivateEndpoint = "string",
        DefinedTags = 
        {
            { "string", "string" },
        },
        FreeformTags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := oci.NewDbmulticloudOracleDbAwsIdentityConnector(ctx, "dbmulticloudOracleDbAwsIdentityConnectorResource", &oci.DbmulticloudOracleDbAwsIdentityConnectorArgs{
    	AwsLocation:   pulumi.String("string"),
    	CompartmentId: pulumi.String("string"),
    	DisplayName:   pulumi.String("string"),
    	IssuerUrl:     pulumi.String("string"),
    	OidcScope:     pulumi.String("string"),
    	ResourceId:    pulumi.String("string"),
    	ServiceRoleDetails: oci.DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailArray{
    		&oci.DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailArgs{
    			RoleArn:                pulumi.String("string"),
    			ServicePrivateEndpoint: pulumi.String("string"),
    			ServiceType:            pulumi.String("string"),
    			AssumeRoleStatus:       pulumi.String("string"),
    			AwsNodes: oci.DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailAwsNodeArray{
    				&oci.DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailAwsNodeArgs{
    					HostId:          pulumi.String("string"),
    					HostName:        pulumi.String("string"),
    					Status:          pulumi.String("string"),
    					TimeLastChecked: pulumi.String("string"),
    				},
    			},
    		},
    	},
    	AwsAccountId:          pulumi.String("string"),
    	AwsStsPrivateEndpoint: pulumi.String("string"),
    	DefinedTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	FreeformTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var dbmulticloudOracleDbAwsIdentityConnectorResource = new DbmulticloudOracleDbAwsIdentityConnector("dbmulticloudOracleDbAwsIdentityConnectorResource", DbmulticloudOracleDbAwsIdentityConnectorArgs.builder()
        .awsLocation("string")
        .compartmentId("string")
        .displayName("string")
        .issuerUrl("string")
        .oidcScope("string")
        .resourceId("string")
        .serviceRoleDetails(DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailArgs.builder()
            .roleArn("string")
            .servicePrivateEndpoint("string")
            .serviceType("string")
            .assumeRoleStatus("string")
            .awsNodes(DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailAwsNodeArgs.builder()
                .hostId("string")
                .hostName("string")
                .status("string")
                .timeLastChecked("string")
                .build())
            .build())
        .awsAccountId("string")
        .awsStsPrivateEndpoint("string")
        .definedTags(Map.of("string", "string"))
        .freeformTags(Map.of("string", "string"))
        .build());
    
    dbmulticloud_oracle_db_aws_identity_connector_resource = oci.oci.DbmulticloudOracleDbAwsIdentityConnector("dbmulticloudOracleDbAwsIdentityConnectorResource",
        aws_location="string",
        compartment_id="string",
        display_name="string",
        issuer_url="string",
        oidc_scope="string",
        resource_id="string",
        service_role_details=[{
            "role_arn": "string",
            "service_private_endpoint": "string",
            "service_type": "string",
            "assume_role_status": "string",
            "aws_nodes": [{
                "host_id": "string",
                "host_name": "string",
                "status": "string",
                "time_last_checked": "string",
            }],
        }],
        aws_account_id="string",
        aws_sts_private_endpoint="string",
        defined_tags={
            "string": "string",
        },
        freeform_tags={
            "string": "string",
        })
    
    const dbmulticloudOracleDbAwsIdentityConnectorResource = new oci.oci.DbmulticloudOracleDbAwsIdentityConnector("dbmulticloudOracleDbAwsIdentityConnectorResource", {
        awsLocation: "string",
        compartmentId: "string",
        displayName: "string",
        issuerUrl: "string",
        oidcScope: "string",
        resourceId: "string",
        serviceRoleDetails: [{
            roleArn: "string",
            servicePrivateEndpoint: "string",
            serviceType: "string",
            assumeRoleStatus: "string",
            awsNodes: [{
                hostId: "string",
                hostName: "string",
                status: "string",
                timeLastChecked: "string",
            }],
        }],
        awsAccountId: "string",
        awsStsPrivateEndpoint: "string",
        definedTags: {
            string: "string",
        },
        freeformTags: {
            string: "string",
        },
    });
    
    type: oci:oci:DbmulticloudOracleDbAwsIdentityConnector
    properties:
        awsAccountId: string
        awsLocation: string
        awsStsPrivateEndpoint: string
        compartmentId: string
        definedTags:
            string: string
        displayName: string
        freeformTags:
            string: string
        issuerUrl: string
        oidcScope: string
        resourceId: string
        serviceRoleDetails:
            - assumeRoleStatus: string
              awsNodes:
                - hostId: string
                  hostName: string
                  status: string
                  timeLastChecked: string
              roleArn: string
              servicePrivateEndpoint: string
              serviceType: string
    

    DbmulticloudOracleDbAwsIdentityConnector Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The DbmulticloudOracleDbAwsIdentityConnector resource accepts the following input properties:

    AwsLocation string
    (Updatable) AWS resource location.
    CompartmentId string
    (Updatable) The OCID of the compartment that contains Oracle DB AWS Identity Connector resource.
    DisplayName string
    (Updatable) Oracle DB Google AWS Identity Connector resource name.
    IssuerUrl string
    (Updatable) OIDC token issuer Url.
    OidcScope string
    (Updatable) Oracle Cloud Infrastructure IAM Domain scope for issuer URL.
    ResourceId string
    (Updatable) The OCID of the AWS VM Cluster resource.
    ServiceRoleDetails List<DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetail>
    (Updatable) Service role details and respective Amazon resource nam of Role.
    AwsAccountId string
    (Updatable) AWS Account ID.
    AwsStsPrivateEndpoint string
    (Updatable) Private endpoint of AWS Security Token Service.
    DefinedTags Dictionary<string, string>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    FreeformTags Dictionary<string, string>
    (Updatable) 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"}
    AwsLocation string
    (Updatable) AWS resource location.
    CompartmentId string
    (Updatable) The OCID of the compartment that contains Oracle DB AWS Identity Connector resource.
    DisplayName string
    (Updatable) Oracle DB Google AWS Identity Connector resource name.
    IssuerUrl string
    (Updatable) OIDC token issuer Url.
    OidcScope string
    (Updatable) Oracle Cloud Infrastructure IAM Domain scope for issuer URL.
    ResourceId string
    (Updatable) The OCID of the AWS VM Cluster resource.
    ServiceRoleDetails []DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailArgs
    (Updatable) Service role details and respective Amazon resource nam of Role.
    AwsAccountId string
    (Updatable) AWS Account ID.
    AwsStsPrivateEndpoint string
    (Updatable) Private endpoint of AWS Security Token Service.
    DefinedTags map[string]string
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    FreeformTags map[string]string
    (Updatable) 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"}
    awsLocation String
    (Updatable) AWS resource location.
    compartmentId String
    (Updatable) The OCID of the compartment that contains Oracle DB AWS Identity Connector resource.
    displayName String
    (Updatable) Oracle DB Google AWS Identity Connector resource name.
    issuerUrl String
    (Updatable) OIDC token issuer Url.
    oidcScope String
    (Updatable) Oracle Cloud Infrastructure IAM Domain scope for issuer URL.
    resourceId String
    (Updatable) The OCID of the AWS VM Cluster resource.
    serviceRoleDetails List<DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetail>
    (Updatable) Service role details and respective Amazon resource nam of Role.
    awsAccountId String
    (Updatable) AWS Account ID.
    awsStsPrivateEndpoint String
    (Updatable) Private endpoint of AWS Security Token Service.
    definedTags Map<String,String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    freeformTags Map<String,String>
    (Updatable) 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"}
    awsLocation string
    (Updatable) AWS resource location.
    compartmentId string
    (Updatable) The OCID of the compartment that contains Oracle DB AWS Identity Connector resource.
    displayName string
    (Updatable) Oracle DB Google AWS Identity Connector resource name.
    issuerUrl string
    (Updatable) OIDC token issuer Url.
    oidcScope string
    (Updatable) Oracle Cloud Infrastructure IAM Domain scope for issuer URL.
    resourceId string
    (Updatable) The OCID of the AWS VM Cluster resource.
    serviceRoleDetails DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetail[]
    (Updatable) Service role details and respective Amazon resource nam of Role.
    awsAccountId string
    (Updatable) AWS Account ID.
    awsStsPrivateEndpoint string
    (Updatable) Private endpoint of AWS Security Token Service.
    definedTags {[key: string]: string}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    freeformTags {[key: string]: string}
    (Updatable) 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"}
    aws_location str
    (Updatable) AWS resource location.
    compartment_id str
    (Updatable) The OCID of the compartment that contains Oracle DB AWS Identity Connector resource.
    display_name str
    (Updatable) Oracle DB Google AWS Identity Connector resource name.
    issuer_url str
    (Updatable) OIDC token issuer Url.
    oidc_scope str
    (Updatable) Oracle Cloud Infrastructure IAM Domain scope for issuer URL.
    resource_id str
    (Updatable) The OCID of the AWS VM Cluster resource.
    service_role_details Sequence[DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailArgs]
    (Updatable) Service role details and respective Amazon resource nam of Role.
    aws_account_id str
    (Updatable) AWS Account ID.
    aws_sts_private_endpoint str
    (Updatable) Private endpoint of AWS Security Token Service.
    defined_tags Mapping[str, str]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    freeform_tags Mapping[str, str]
    (Updatable) 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"}
    awsLocation String
    (Updatable) AWS resource location.
    compartmentId String
    (Updatable) The OCID of the compartment that contains Oracle DB AWS Identity Connector resource.
    displayName String
    (Updatable) Oracle DB Google AWS Identity Connector resource name.
    issuerUrl String
    (Updatable) OIDC token issuer Url.
    oidcScope String
    (Updatable) Oracle Cloud Infrastructure IAM Domain scope for issuer URL.
    resourceId String
    (Updatable) The OCID of the AWS VM Cluster resource.
    serviceRoleDetails List<Property Map>
    (Updatable) Service role details and respective Amazon resource nam of Role.
    awsAccountId String
    (Updatable) AWS Account ID.
    awsStsPrivateEndpoint String
    (Updatable) Private endpoint of AWS Security Token Service.
    definedTags Map<String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    freeformTags Map<String>
    (Updatable) 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"}

    Outputs

    All input properties are implicitly available as output properties. Additionally, the DbmulticloudOracleDbAwsIdentityConnector resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    LifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    State string
    The current lifecycle state of the AWS Identity Connector resource.
    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'.
    Id string
    The provider-assigned unique ID for this managed resource.
    LifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    State string
    The current lifecycle state of the AWS Identity Connector resource.
    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'.
    id String
    The provider-assigned unique ID for this managed resource.
    lifecycleStateDetails String
    Description of the current lifecycle state in more detail.
    state String
    The current lifecycle state of the AWS Identity Connector resource.
    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'.
    id string
    The provider-assigned unique ID for this managed resource.
    lifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    state string
    The current lifecycle state of the AWS Identity Connector resource.
    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'.
    id str
    The provider-assigned unique ID for this managed resource.
    lifecycle_state_details str
    Description of the current lifecycle state in more detail.
    state str
    The current lifecycle state of the AWS Identity Connector resource.
    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'.
    id String
    The provider-assigned unique ID for this managed resource.
    lifecycleStateDetails String
    Description of the current lifecycle state in more detail.
    state String
    The current lifecycle state of the AWS Identity Connector resource.
    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'.

    Look up Existing DbmulticloudOracleDbAwsIdentityConnector Resource

    Get an existing DbmulticloudOracleDbAwsIdentityConnector resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: DbmulticloudOracleDbAwsIdentityConnectorState, opts?: CustomResourceOptions): DbmulticloudOracleDbAwsIdentityConnector
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            aws_account_id: Optional[str] = None,
            aws_location: Optional[str] = None,
            aws_sts_private_endpoint: Optional[str] = None,
            compartment_id: Optional[str] = None,
            defined_tags: Optional[Mapping[str, str]] = None,
            display_name: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, str]] = None,
            issuer_url: Optional[str] = None,
            lifecycle_state_details: Optional[str] = None,
            oidc_scope: Optional[str] = None,
            resource_id: Optional[str] = None,
            service_role_details: Optional[Sequence[DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailArgs]] = None,
            state: Optional[str] = None,
            system_tags: Optional[Mapping[str, str]] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None) -> DbmulticloudOracleDbAwsIdentityConnector
    func GetDbmulticloudOracleDbAwsIdentityConnector(ctx *Context, name string, id IDInput, state *DbmulticloudOracleDbAwsIdentityConnectorState, opts ...ResourceOption) (*DbmulticloudOracleDbAwsIdentityConnector, error)
    public static DbmulticloudOracleDbAwsIdentityConnector Get(string name, Input<string> id, DbmulticloudOracleDbAwsIdentityConnectorState? state, CustomResourceOptions? opts = null)
    public static DbmulticloudOracleDbAwsIdentityConnector get(String name, Output<String> id, DbmulticloudOracleDbAwsIdentityConnectorState state, CustomResourceOptions options)
    resources:  _:    type: oci:oci:DbmulticloudOracleDbAwsIdentityConnector    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AwsAccountId string
    (Updatable) AWS Account ID.
    AwsLocation string
    (Updatable) AWS resource location.
    AwsStsPrivateEndpoint string
    (Updatable) Private endpoint of AWS Security Token Service.
    CompartmentId string
    (Updatable) The OCID of the compartment that contains Oracle DB AWS Identity Connector resource.
    DefinedTags Dictionary<string, string>
    (Updatable) 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
    (Updatable) Oracle DB Google AWS Identity Connector resource name.
    FreeformTags Dictionary<string, string>
    (Updatable) 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"}
    IssuerUrl string
    (Updatable) OIDC token issuer Url.
    LifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    OidcScope string
    (Updatable) Oracle Cloud Infrastructure IAM Domain scope for issuer URL.
    ResourceId string
    (Updatable) The OCID of the AWS VM Cluster resource.
    ServiceRoleDetails List<DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetail>
    (Updatable) Service role details and respective Amazon resource nam of Role.
    State string
    The current lifecycle state of the AWS Identity Connector resource.
    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
    (Updatable) AWS Account ID.
    AwsLocation string
    (Updatable) AWS resource location.
    AwsStsPrivateEndpoint string
    (Updatable) Private endpoint of AWS Security Token Service.
    CompartmentId string
    (Updatable) The OCID of the compartment that contains Oracle DB AWS Identity Connector resource.
    DefinedTags map[string]string
    (Updatable) 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
    (Updatable) Oracle DB Google AWS Identity Connector resource name.
    FreeformTags map[string]string
    (Updatable) 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"}
    IssuerUrl string
    (Updatable) OIDC token issuer Url.
    LifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    OidcScope string
    (Updatable) Oracle Cloud Infrastructure IAM Domain scope for issuer URL.
    ResourceId string
    (Updatable) The OCID of the AWS VM Cluster resource.
    ServiceRoleDetails []DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailArgs
    (Updatable) Service role details and respective Amazon resource nam of Role.
    State string
    The current lifecycle state of the AWS Identity Connector resource.
    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
    (Updatable) AWS Account ID.
    awsLocation String
    (Updatable) AWS resource location.
    awsStsPrivateEndpoint String
    (Updatable) Private endpoint of AWS Security Token Service.
    compartmentId String
    (Updatable) The OCID of the compartment that contains Oracle DB AWS Identity Connector resource.
    definedTags Map<String,String>
    (Updatable) 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
    (Updatable) Oracle DB Google AWS Identity Connector resource name.
    freeformTags Map<String,String>
    (Updatable) 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"}
    issuerUrl String
    (Updatable) OIDC token issuer Url.
    lifecycleStateDetails String
    Description of the current lifecycle state in more detail.
    oidcScope String
    (Updatable) Oracle Cloud Infrastructure IAM Domain scope for issuer URL.
    resourceId String
    (Updatable) The OCID of the AWS VM Cluster resource.
    serviceRoleDetails List<DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetail>
    (Updatable) Service role details and respective Amazon resource nam of Role.
    state String
    The current lifecycle state of the AWS Identity Connector resource.
    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
    (Updatable) AWS Account ID.
    awsLocation string
    (Updatable) AWS resource location.
    awsStsPrivateEndpoint string
    (Updatable) Private endpoint of AWS Security Token Service.
    compartmentId string
    (Updatable) The OCID of the compartment that contains Oracle DB AWS Identity Connector resource.
    definedTags {[key: string]: string}
    (Updatable) 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
    (Updatable) Oracle DB Google AWS Identity Connector resource name.
    freeformTags {[key: string]: string}
    (Updatable) 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"}
    issuerUrl string
    (Updatable) OIDC token issuer Url.
    lifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    oidcScope string
    (Updatable) Oracle Cloud Infrastructure IAM Domain scope for issuer URL.
    resourceId string
    (Updatable) The OCID of the AWS VM Cluster resource.
    serviceRoleDetails DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetail[]
    (Updatable) Service role details and respective Amazon resource nam of Role.
    state string
    The current lifecycle state of the AWS Identity Connector resource.
    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
    (Updatable) AWS Account ID.
    aws_location str
    (Updatable) AWS resource location.
    aws_sts_private_endpoint str
    (Updatable) Private endpoint of AWS Security Token Service.
    compartment_id str
    (Updatable) The OCID of the compartment that contains Oracle DB AWS Identity Connector resource.
    defined_tags Mapping[str, str]
    (Updatable) 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
    (Updatable) Oracle DB Google AWS Identity Connector resource name.
    freeform_tags Mapping[str, str]
    (Updatable) 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"}
    issuer_url str
    (Updatable) OIDC token issuer Url.
    lifecycle_state_details str
    Description of the current lifecycle state in more detail.
    oidc_scope str
    (Updatable) Oracle Cloud Infrastructure IAM Domain scope for issuer URL.
    resource_id str
    (Updatable) The OCID of the AWS VM Cluster resource.
    service_role_details Sequence[DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailArgs]
    (Updatable) Service role details and respective Amazon resource nam of Role.
    state str
    The current lifecycle state of the AWS Identity Connector resource.
    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
    (Updatable) AWS Account ID.
    awsLocation String
    (Updatable) AWS resource location.
    awsStsPrivateEndpoint String
    (Updatable) Private endpoint of AWS Security Token Service.
    compartmentId String
    (Updatable) The OCID of the compartment that contains Oracle DB AWS Identity Connector resource.
    definedTags Map<String>
    (Updatable) 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
    (Updatable) Oracle DB Google AWS Identity Connector resource name.
    freeformTags Map<String>
    (Updatable) 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"}
    issuerUrl String
    (Updatable) OIDC token issuer Url.
    lifecycleStateDetails String
    Description of the current lifecycle state in more detail.
    oidcScope String
    (Updatable) Oracle Cloud Infrastructure IAM Domain scope for issuer URL.
    resourceId String
    (Updatable) The OCID of the AWS VM Cluster resource.
    serviceRoleDetails List<Property Map>
    (Updatable) Service role details and respective Amazon resource nam of Role.
    state String
    The current lifecycle state of the AWS Identity Connector resource.
    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'.

    Supporting Types

    DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetail, DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailArgs

    RoleArn string
    (Updatable) Amazon resource name AWSof the IAM role.
    ServicePrivateEndpoint string
    (Updatable) Private endpoint of the AWS service.
    ServiceType string

    (Updatable) Type of service.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    AssumeRoleStatus string
    Assume role status.
    AwsNodes List<DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailAwsNode>
    List of all VMs where AWS Identity Connector is configured for Oracle DB Cloud VM Cluster.
    RoleArn string
    (Updatable) Amazon resource name AWSof the IAM role.
    ServicePrivateEndpoint string
    (Updatable) Private endpoint of the AWS service.
    ServiceType string

    (Updatable) Type of service.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    AssumeRoleStatus string
    Assume role status.
    AwsNodes []DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailAwsNode
    List of all VMs where AWS Identity Connector is configured for Oracle DB Cloud VM Cluster.
    roleArn String
    (Updatable) Amazon resource name AWSof the IAM role.
    servicePrivateEndpoint String
    (Updatable) Private endpoint of the AWS service.
    serviceType String

    (Updatable) Type of service.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    assumeRoleStatus String
    Assume role status.
    awsNodes List<DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailAwsNode>
    List of all VMs where AWS Identity Connector is configured for Oracle DB Cloud VM Cluster.
    roleArn string
    (Updatable) Amazon resource name AWSof the IAM role.
    servicePrivateEndpoint string
    (Updatable) Private endpoint of the AWS service.
    serviceType string

    (Updatable) Type of service.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    assumeRoleStatus string
    Assume role status.
    awsNodes DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailAwsNode[]
    List of all VMs where AWS Identity Connector is configured for Oracle DB Cloud VM Cluster.
    role_arn str
    (Updatable) Amazon resource name AWSof the IAM role.
    service_private_endpoint str
    (Updatable) Private endpoint of the AWS service.
    service_type str

    (Updatable) Type of service.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    assume_role_status str
    Assume role status.
    aws_nodes Sequence[DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailAwsNode]
    List of all VMs where AWS Identity Connector is configured for Oracle DB Cloud VM Cluster.
    roleArn String
    (Updatable) Amazon resource name AWSof the IAM role.
    servicePrivateEndpoint String
    (Updatable) Private endpoint of the AWS service.
    serviceType String

    (Updatable) Type of service.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    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.

    DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailAwsNode, DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailAwsNodeArgs

    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'.

    Import

    OracleDbAwsIdentityConnectors can be imported using the id, e.g.

    $ pulumi import oci:oci/dbmulticloudOracleDbAwsIdentityConnector:DbmulticloudOracleDbAwsIdentityConnector test_oracle_db_aws_identity_connector "id"
    

    To learn more about importing existing cloud resources, see Importing resources.

    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