1. Packages
  2. Newrelic Provider
  3. API Docs
  4. cloud
  5. AwsEuSovereignIntegrations
New Relic v5.60.0 published on Tuesday, Feb 3, 2026 by Pulumi
newrelic logo
New Relic v5.60.0 published on Tuesday, Feb 3, 2026 by Pulumi

    Create AwsEuSovereignIntegrations Resource

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

    Constructor syntax

    new AwsEuSovereignIntegrations(name: string, args: AwsEuSovereignIntegrationsArgs, opts?: CustomResourceOptions);
    @overload
    def AwsEuSovereignIntegrations(resource_name: str,
                                   args: AwsEuSovereignIntegrationsArgs,
                                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def AwsEuSovereignIntegrations(resource_name: str,
                                   opts: Optional[ResourceOptions] = None,
                                   linked_account_id: Optional[str] = None,
                                   account_id: Optional[str] = None,
                                   billing: Optional[AwsEuSovereignIntegrationsBillingArgs] = None,
                                   cloudtrail: Optional[AwsEuSovereignIntegrationsCloudtrailArgs] = None,
                                   health: Optional[AwsEuSovereignIntegrationsHealthArgs] = None,
                                   trusted_advisor: Optional[AwsEuSovereignIntegrationsTrustedAdvisorArgs] = None,
                                   x_ray: Optional[AwsEuSovereignIntegrationsXRayArgs] = None)
    func NewAwsEuSovereignIntegrations(ctx *Context, name string, args AwsEuSovereignIntegrationsArgs, opts ...ResourceOption) (*AwsEuSovereignIntegrations, error)
    public AwsEuSovereignIntegrations(string name, AwsEuSovereignIntegrationsArgs args, CustomResourceOptions? opts = null)
    public AwsEuSovereignIntegrations(String name, AwsEuSovereignIntegrationsArgs args)
    public AwsEuSovereignIntegrations(String name, AwsEuSovereignIntegrationsArgs args, CustomResourceOptions options)
    
    type: newrelic:cloud:AwsEuSovereignIntegrations
    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 AwsEuSovereignIntegrationsArgs
    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 AwsEuSovereignIntegrationsArgs
    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 AwsEuSovereignIntegrationsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AwsEuSovereignIntegrationsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AwsEuSovereignIntegrationsArgs
    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 awsEuSovereignIntegrationsResource = new NewRelic.Cloud.AwsEuSovereignIntegrations("awsEuSovereignIntegrationsResource", new()
    {
        LinkedAccountId = "string",
        AccountId = "string",
        Billing = new NewRelic.Cloud.Inputs.AwsEuSovereignIntegrationsBillingArgs
        {
            MetricsPollingInterval = 0,
        },
        Cloudtrail = new NewRelic.Cloud.Inputs.AwsEuSovereignIntegrationsCloudtrailArgs
        {
            AwsRegions = new[]
            {
                "string",
            },
            MetricsPollingInterval = 0,
        },
        Health = new NewRelic.Cloud.Inputs.AwsEuSovereignIntegrationsHealthArgs
        {
            MetricsPollingInterval = 0,
        },
        TrustedAdvisor = new NewRelic.Cloud.Inputs.AwsEuSovereignIntegrationsTrustedAdvisorArgs
        {
            MetricsPollingInterval = 0,
        },
        XRay = new NewRelic.Cloud.Inputs.AwsEuSovereignIntegrationsXRayArgs
        {
            AwsRegions = new[]
            {
                "string",
            },
            MetricsPollingInterval = 0,
        },
    });
    
    example, err := cloud.NewAwsEuSovereignIntegrations(ctx, "awsEuSovereignIntegrationsResource", &cloud.AwsEuSovereignIntegrationsArgs{
    	LinkedAccountId: pulumi.String("string"),
    	AccountId:       pulumi.String("string"),
    	Billing: &cloud.AwsEuSovereignIntegrationsBillingArgs{
    		MetricsPollingInterval: pulumi.Int(0),
    	},
    	Cloudtrail: &cloud.AwsEuSovereignIntegrationsCloudtrailArgs{
    		AwsRegions: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		MetricsPollingInterval: pulumi.Int(0),
    	},
    	Health: &cloud.AwsEuSovereignIntegrationsHealthArgs{
    		MetricsPollingInterval: pulumi.Int(0),
    	},
    	TrustedAdvisor: &cloud.AwsEuSovereignIntegrationsTrustedAdvisorArgs{
    		MetricsPollingInterval: pulumi.Int(0),
    	},
    	XRay: &cloud.AwsEuSovereignIntegrationsXRayArgs{
    		AwsRegions: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		MetricsPollingInterval: pulumi.Int(0),
    	},
    })
    
    var awsEuSovereignIntegrationsResource = new AwsEuSovereignIntegrations("awsEuSovereignIntegrationsResource", AwsEuSovereignIntegrationsArgs.builder()
        .linkedAccountId("string")
        .accountId("string")
        .billing(AwsEuSovereignIntegrationsBillingArgs.builder()
            .metricsPollingInterval(0)
            .build())
        .cloudtrail(AwsEuSovereignIntegrationsCloudtrailArgs.builder()
            .awsRegions("string")
            .metricsPollingInterval(0)
            .build())
        .health(AwsEuSovereignIntegrationsHealthArgs.builder()
            .metricsPollingInterval(0)
            .build())
        .trustedAdvisor(AwsEuSovereignIntegrationsTrustedAdvisorArgs.builder()
            .metricsPollingInterval(0)
            .build())
        .xRay(AwsEuSovereignIntegrationsXRayArgs.builder()
            .awsRegions("string")
            .metricsPollingInterval(0)
            .build())
        .build());
    
    aws_eu_sovereign_integrations_resource = newrelic.cloud.AwsEuSovereignIntegrations("awsEuSovereignIntegrationsResource",
        linked_account_id="string",
        account_id="string",
        billing={
            "metrics_polling_interval": 0,
        },
        cloudtrail={
            "aws_regions": ["string"],
            "metrics_polling_interval": 0,
        },
        health={
            "metrics_polling_interval": 0,
        },
        trusted_advisor={
            "metrics_polling_interval": 0,
        },
        x_ray={
            "aws_regions": ["string"],
            "metrics_polling_interval": 0,
        })
    
    const awsEuSovereignIntegrationsResource = new newrelic.cloud.AwsEuSovereignIntegrations("awsEuSovereignIntegrationsResource", {
        linkedAccountId: "string",
        accountId: "string",
        billing: {
            metricsPollingInterval: 0,
        },
        cloudtrail: {
            awsRegions: ["string"],
            metricsPollingInterval: 0,
        },
        health: {
            metricsPollingInterval: 0,
        },
        trustedAdvisor: {
            metricsPollingInterval: 0,
        },
        xRay: {
            awsRegions: ["string"],
            metricsPollingInterval: 0,
        },
    });
    
    type: newrelic:cloud:AwsEuSovereignIntegrations
    properties:
        accountId: string
        billing:
            metricsPollingInterval: 0
        cloudtrail:
            awsRegions:
                - string
            metricsPollingInterval: 0
        health:
            metricsPollingInterval: 0
        linkedAccountId: string
        trustedAdvisor:
            metricsPollingInterval: 0
        xRay:
            awsRegions:
                - string
            metricsPollingInterval: 0
    

    AwsEuSovereignIntegrations 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 AwsEuSovereignIntegrations resource accepts the following input properties:

    LinkedAccountId string
    The ID of the linked AWS EU Sovereign account in New Relic.
    AccountId string
    The ID of the account in New Relic.
    Billing AwsEuSovereignIntegrationsBillingArgs
    Billing integration
    Cloudtrail AwsEuSovereignIntegrationsCloudtrailArgs
    CloudTrail integration
    Health AwsEuSovereignIntegrationsHealthArgs
    Health integration
    TrustedAdvisor AwsEuSovereignIntegrationsTrustedAdvisorArgs
    Trusted Advisor integration
    XRay AwsEuSovereignIntegrationsXRayArgs
    X-Ray integration
    linkedAccountId String
    The ID of the linked AWS EU Sovereign account in New Relic.
    accountId String
    The ID of the account in New Relic.
    billing AwsEuSovereignIntegrationsBilling
    Billing integration
    cloudtrail AwsEuSovereignIntegrationsCloudtrail
    CloudTrail integration
    health AwsEuSovereignIntegrationsHealth
    Health integration
    trustedAdvisor AwsEuSovereignIntegrationsTrustedAdvisor
    Trusted Advisor integration
    xRay AwsEuSovereignIntegrationsXRay
    X-Ray integration
    linkedAccountId string
    The ID of the linked AWS EU Sovereign account in New Relic.
    accountId string
    The ID of the account in New Relic.
    billing AwsEuSovereignIntegrationsBilling
    Billing integration
    cloudtrail AwsEuSovereignIntegrationsCloudtrail
    CloudTrail integration
    health AwsEuSovereignIntegrationsHealth
    Health integration
    trustedAdvisor AwsEuSovereignIntegrationsTrustedAdvisor
    Trusted Advisor integration
    xRay AwsEuSovereignIntegrationsXRay
    X-Ray integration
    linked_account_id str
    The ID of the linked AWS EU Sovereign account in New Relic.
    account_id str
    The ID of the account in New Relic.
    billing AwsEuSovereignIntegrationsBillingArgs
    Billing integration
    cloudtrail AwsEuSovereignIntegrationsCloudtrailArgs
    CloudTrail integration
    health AwsEuSovereignIntegrationsHealthArgs
    Health integration
    trusted_advisor AwsEuSovereignIntegrationsTrustedAdvisorArgs
    Trusted Advisor integration
    x_ray AwsEuSovereignIntegrationsXRayArgs
    X-Ray integration
    linkedAccountId String
    The ID of the linked AWS EU Sovereign account in New Relic.
    accountId String
    The ID of the account in New Relic.
    billing Property Map
    Billing integration
    cloudtrail Property Map
    CloudTrail integration
    health Property Map
    Health integration
    trustedAdvisor Property Map
    Trusted Advisor integration
    xRay Property Map
    X-Ray integration

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing AwsEuSovereignIntegrations Resource

    Get an existing AwsEuSovereignIntegrations 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?: AwsEuSovereignIntegrationsState, opts?: CustomResourceOptions): AwsEuSovereignIntegrations
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            account_id: Optional[str] = None,
            billing: Optional[AwsEuSovereignIntegrationsBillingArgs] = None,
            cloudtrail: Optional[AwsEuSovereignIntegrationsCloudtrailArgs] = None,
            health: Optional[AwsEuSovereignIntegrationsHealthArgs] = None,
            linked_account_id: Optional[str] = None,
            trusted_advisor: Optional[AwsEuSovereignIntegrationsTrustedAdvisorArgs] = None,
            x_ray: Optional[AwsEuSovereignIntegrationsXRayArgs] = None) -> AwsEuSovereignIntegrations
    func GetAwsEuSovereignIntegrations(ctx *Context, name string, id IDInput, state *AwsEuSovereignIntegrationsState, opts ...ResourceOption) (*AwsEuSovereignIntegrations, error)
    public static AwsEuSovereignIntegrations Get(string name, Input<string> id, AwsEuSovereignIntegrationsState? state, CustomResourceOptions? opts = null)
    public static AwsEuSovereignIntegrations get(String name, Output<String> id, AwsEuSovereignIntegrationsState state, CustomResourceOptions options)
    resources:  _:    type: newrelic:cloud:AwsEuSovereignIntegrations    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:
    AccountId string
    The ID of the account in New Relic.
    Billing AwsEuSovereignIntegrationsBillingArgs
    Billing integration
    Cloudtrail AwsEuSovereignIntegrationsCloudtrailArgs
    CloudTrail integration
    Health AwsEuSovereignIntegrationsHealthArgs
    Health integration
    LinkedAccountId string
    The ID of the linked AWS EU Sovereign account in New Relic.
    TrustedAdvisor AwsEuSovereignIntegrationsTrustedAdvisorArgs
    Trusted Advisor integration
    XRay AwsEuSovereignIntegrationsXRayArgs
    X-Ray integration
    accountId String
    The ID of the account in New Relic.
    billing AwsEuSovereignIntegrationsBilling
    Billing integration
    cloudtrail AwsEuSovereignIntegrationsCloudtrail
    CloudTrail integration
    health AwsEuSovereignIntegrationsHealth
    Health integration
    linkedAccountId String
    The ID of the linked AWS EU Sovereign account in New Relic.
    trustedAdvisor AwsEuSovereignIntegrationsTrustedAdvisor
    Trusted Advisor integration
    xRay AwsEuSovereignIntegrationsXRay
    X-Ray integration
    accountId string
    The ID of the account in New Relic.
    billing AwsEuSovereignIntegrationsBilling
    Billing integration
    cloudtrail AwsEuSovereignIntegrationsCloudtrail
    CloudTrail integration
    health AwsEuSovereignIntegrationsHealth
    Health integration
    linkedAccountId string
    The ID of the linked AWS EU Sovereign account in New Relic.
    trustedAdvisor AwsEuSovereignIntegrationsTrustedAdvisor
    Trusted Advisor integration
    xRay AwsEuSovereignIntegrationsXRay
    X-Ray integration
    account_id str
    The ID of the account in New Relic.
    billing AwsEuSovereignIntegrationsBillingArgs
    Billing integration
    cloudtrail AwsEuSovereignIntegrationsCloudtrailArgs
    CloudTrail integration
    health AwsEuSovereignIntegrationsHealthArgs
    Health integration
    linked_account_id str
    The ID of the linked AWS EU Sovereign account in New Relic.
    trusted_advisor AwsEuSovereignIntegrationsTrustedAdvisorArgs
    Trusted Advisor integration
    x_ray AwsEuSovereignIntegrationsXRayArgs
    X-Ray integration
    accountId String
    The ID of the account in New Relic.
    billing Property Map
    Billing integration
    cloudtrail Property Map
    CloudTrail integration
    health Property Map
    Health integration
    linkedAccountId String
    The ID of the linked AWS EU Sovereign account in New Relic.
    trustedAdvisor Property Map
    Trusted Advisor integration
    xRay Property Map
    X-Ray integration

    Supporting Types

    AwsEuSovereignIntegrationsBilling, AwsEuSovereignIntegrationsBillingArgs

    MetricsPollingInterval int
    The data polling interval in seconds
    MetricsPollingInterval int
    The data polling interval in seconds
    metricsPollingInterval Integer
    The data polling interval in seconds
    metricsPollingInterval number
    The data polling interval in seconds
    metrics_polling_interval int
    The data polling interval in seconds
    metricsPollingInterval Number
    The data polling interval in seconds

    AwsEuSovereignIntegrationsCloudtrail, AwsEuSovereignIntegrationsCloudtrailArgs

    AwsRegions List<string>
    Specify each AWS region that includes the resources that you want to monitor
    MetricsPollingInterval int
    The data polling interval in seconds
    AwsRegions []string
    Specify each AWS region that includes the resources that you want to monitor
    MetricsPollingInterval int
    The data polling interval in seconds
    awsRegions List<String>
    Specify each AWS region that includes the resources that you want to monitor
    metricsPollingInterval Integer
    The data polling interval in seconds
    awsRegions string[]
    Specify each AWS region that includes the resources that you want to monitor
    metricsPollingInterval number
    The data polling interval in seconds
    aws_regions Sequence[str]
    Specify each AWS region that includes the resources that you want to monitor
    metrics_polling_interval int
    The data polling interval in seconds
    awsRegions List<String>
    Specify each AWS region that includes the resources that you want to monitor
    metricsPollingInterval Number
    The data polling interval in seconds

    AwsEuSovereignIntegrationsHealth, AwsEuSovereignIntegrationsHealthArgs

    MetricsPollingInterval int
    The data polling interval in seconds
    MetricsPollingInterval int
    The data polling interval in seconds
    metricsPollingInterval Integer
    The data polling interval in seconds
    metricsPollingInterval number
    The data polling interval in seconds
    metrics_polling_interval int
    The data polling interval in seconds
    metricsPollingInterval Number
    The data polling interval in seconds

    AwsEuSovereignIntegrationsTrustedAdvisor, AwsEuSovereignIntegrationsTrustedAdvisorArgs

    MetricsPollingInterval int
    The data polling interval in seconds
    MetricsPollingInterval int
    The data polling interval in seconds
    metricsPollingInterval Integer
    The data polling interval in seconds
    metricsPollingInterval number
    The data polling interval in seconds
    metrics_polling_interval int
    The data polling interval in seconds
    metricsPollingInterval Number
    The data polling interval in seconds

    AwsEuSovereignIntegrationsXRay, AwsEuSovereignIntegrationsXRayArgs

    AwsRegions List<string>
    Specify each AWS region that includes the resources that you want to monitor
    MetricsPollingInterval int
    The data polling interval in seconds
    AwsRegions []string
    Specify each AWS region that includes the resources that you want to monitor
    MetricsPollingInterval int
    The data polling interval in seconds
    awsRegions List<String>
    Specify each AWS region that includes the resources that you want to monitor
    metricsPollingInterval Integer
    The data polling interval in seconds
    awsRegions string[]
    Specify each AWS region that includes the resources that you want to monitor
    metricsPollingInterval number
    The data polling interval in seconds
    aws_regions Sequence[str]
    Specify each AWS region that includes the resources that you want to monitor
    metrics_polling_interval int
    The data polling interval in seconds
    awsRegions List<String>
    Specify each AWS region that includes the resources that you want to monitor
    metricsPollingInterval Number
    The data polling interval in seconds

    Package Details

    Repository
    New Relic pulumi/pulumi-newrelic
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the newrelic Terraform Provider.
    newrelic logo
    New Relic v5.60.0 published on Tuesday, Feb 3, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate