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:
- Linked
Account stringId - The ID of the linked AWS EU Sovereign account in New Relic.
- Account
Id string - The ID of the account in New Relic.
- Billing
Pulumi.
New Relic. Cloud. Inputs. Aws Eu Sovereign Integrations Billing - Billing integration
- Cloudtrail
Pulumi.
New Relic. Cloud. Inputs. Aws Eu Sovereign Integrations Cloudtrail - CloudTrail integration
- Health
Pulumi.
New Relic. Cloud. Inputs. Aws Eu Sovereign Integrations Health - Health integration
- Trusted
Advisor Pulumi.New Relic. Cloud. Inputs. Aws Eu Sovereign Integrations Trusted Advisor - Trusted Advisor integration
- XRay
Pulumi.
New Relic. Cloud. Inputs. Aws Eu Sovereign Integrations XRay - X-Ray integration
- Linked
Account stringId - The ID of the linked AWS EU Sovereign account in New Relic.
- Account
Id string - The ID of the account in New Relic.
- Billing
Aws
Eu Sovereign Integrations Billing Args - Billing integration
- Cloudtrail
Aws
Eu Sovereign Integrations Cloudtrail Args - CloudTrail integration
- Health
Aws
Eu Sovereign Integrations Health Args - Health integration
- Trusted
Advisor AwsEu Sovereign Integrations Trusted Advisor Args - Trusted Advisor integration
- XRay
Aws
Eu Sovereign Integrations XRay Args - X-Ray integration
- linked
Account StringId - The ID of the linked AWS EU Sovereign account in New Relic.
- account
Id String - The ID of the account in New Relic.
- billing
Aws
Eu Sovereign Integrations Billing - Billing integration
- cloudtrail
Aws
Eu Sovereign Integrations Cloudtrail - CloudTrail integration
- health
Aws
Eu Sovereign Integrations Health - Health integration
- trusted
Advisor AwsEu Sovereign Integrations Trusted Advisor - Trusted Advisor integration
- x
Ray AwsEu Sovereign Integrations XRay - X-Ray integration
- linked
Account stringId - The ID of the linked AWS EU Sovereign account in New Relic.
- account
Id string - The ID of the account in New Relic.
- billing
Aws
Eu Sovereign Integrations Billing - Billing integration
- cloudtrail
Aws
Eu Sovereign Integrations Cloudtrail - CloudTrail integration
- health
Aws
Eu Sovereign Integrations Health - Health integration
- trusted
Advisor AwsEu Sovereign Integrations Trusted Advisor - Trusted Advisor integration
- x
Ray AwsEu Sovereign Integrations XRay - X-Ray integration
- linked_
account_ strid - The ID of the linked AWS EU Sovereign account in New Relic.
- account_
id str - The ID of the account in New Relic.
- billing
Aws
Eu Sovereign Integrations Billing Args - Billing integration
- cloudtrail
Aws
Eu Sovereign Integrations Cloudtrail Args - CloudTrail integration
- health
Aws
Eu Sovereign Integrations Health Args - Health integration
- trusted_
advisor AwsEu Sovereign Integrations Trusted Advisor Args - Trusted Advisor integration
- x_
ray AwsEu Sovereign Integrations XRay Args - X-Ray integration
- linked
Account StringId - The ID of the linked AWS EU Sovereign account in New Relic.
- account
Id String - The ID of the account in New Relic.
- billing Property Map
- Billing integration
- cloudtrail Property Map
- CloudTrail integration
- health Property Map
- Health integration
- trusted
Advisor Property Map - Trusted Advisor integration
- x
Ray 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) -> AwsEuSovereignIntegrationsfunc 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.
- Account
Id string - The ID of the account in New Relic.
- Billing
Pulumi.
New Relic. Cloud. Inputs. Aws Eu Sovereign Integrations Billing - Billing integration
- Cloudtrail
Pulumi.
New Relic. Cloud. Inputs. Aws Eu Sovereign Integrations Cloudtrail - CloudTrail integration
- Health
Pulumi.
New Relic. Cloud. Inputs. Aws Eu Sovereign Integrations Health - Health integration
- Linked
Account stringId - The ID of the linked AWS EU Sovereign account in New Relic.
- Trusted
Advisor Pulumi.New Relic. Cloud. Inputs. Aws Eu Sovereign Integrations Trusted Advisor - Trusted Advisor integration
- XRay
Pulumi.
New Relic. Cloud. Inputs. Aws Eu Sovereign Integrations XRay - X-Ray integration
- Account
Id string - The ID of the account in New Relic.
- Billing
Aws
Eu Sovereign Integrations Billing Args - Billing integration
- Cloudtrail
Aws
Eu Sovereign Integrations Cloudtrail Args - CloudTrail integration
- Health
Aws
Eu Sovereign Integrations Health Args - Health integration
- Linked
Account stringId - The ID of the linked AWS EU Sovereign account in New Relic.
- Trusted
Advisor AwsEu Sovereign Integrations Trusted Advisor Args - Trusted Advisor integration
- XRay
Aws
Eu Sovereign Integrations XRay Args - X-Ray integration
- account
Id String - The ID of the account in New Relic.
- billing
Aws
Eu Sovereign Integrations Billing - Billing integration
- cloudtrail
Aws
Eu Sovereign Integrations Cloudtrail - CloudTrail integration
- health
Aws
Eu Sovereign Integrations Health - Health integration
- linked
Account StringId - The ID of the linked AWS EU Sovereign account in New Relic.
- trusted
Advisor AwsEu Sovereign Integrations Trusted Advisor - Trusted Advisor integration
- x
Ray AwsEu Sovereign Integrations XRay - X-Ray integration
- account
Id string - The ID of the account in New Relic.
- billing
Aws
Eu Sovereign Integrations Billing - Billing integration
- cloudtrail
Aws
Eu Sovereign Integrations Cloudtrail - CloudTrail integration
- health
Aws
Eu Sovereign Integrations Health - Health integration
- linked
Account stringId - The ID of the linked AWS EU Sovereign account in New Relic.
- trusted
Advisor AwsEu Sovereign Integrations Trusted Advisor - Trusted Advisor integration
- x
Ray AwsEu Sovereign Integrations XRay - X-Ray integration
- account_
id str - The ID of the account in New Relic.
- billing
Aws
Eu Sovereign Integrations Billing Args - Billing integration
- cloudtrail
Aws
Eu Sovereign Integrations Cloudtrail Args - CloudTrail integration
- health
Aws
Eu Sovereign Integrations Health Args - Health integration
- linked_
account_ strid - The ID of the linked AWS EU Sovereign account in New Relic.
- trusted_
advisor AwsEu Sovereign Integrations Trusted Advisor Args - Trusted Advisor integration
- x_
ray AwsEu Sovereign Integrations XRay Args - X-Ray integration
- account
Id String - The ID of the account in New Relic.
- billing Property Map
- Billing integration
- cloudtrail Property Map
- CloudTrail integration
- health Property Map
- Health integration
- linked
Account StringId - The ID of the linked AWS EU Sovereign account in New Relic.
- trusted
Advisor Property Map - Trusted Advisor integration
- x
Ray Property Map - X-Ray integration
Supporting Types
AwsEuSovereignIntegrationsBilling, AwsEuSovereignIntegrationsBillingArgs
- Metrics
Polling intInterval - The data polling interval in seconds
- Metrics
Polling intInterval - The data polling interval in seconds
- metrics
Polling IntegerInterval - The data polling interval in seconds
- metrics
Polling numberInterval - The data polling interval in seconds
- metrics_
polling_ intinterval - The data polling interval in seconds
- metrics
Polling NumberInterval - The data polling interval in seconds
AwsEuSovereignIntegrationsCloudtrail, AwsEuSovereignIntegrationsCloudtrailArgs
- Aws
Regions List<string> - Specify each AWS region that includes the resources that you want to monitor
- Metrics
Polling intInterval - The data polling interval in seconds
- Aws
Regions []string - Specify each AWS region that includes the resources that you want to monitor
- Metrics
Polling intInterval - The data polling interval in seconds
- aws
Regions List<String> - Specify each AWS region that includes the resources that you want to monitor
- metrics
Polling IntegerInterval - The data polling interval in seconds
- aws
Regions string[] - Specify each AWS region that includes the resources that you want to monitor
- metrics
Polling numberInterval - 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_ intinterval - The data polling interval in seconds
- aws
Regions List<String> - Specify each AWS region that includes the resources that you want to monitor
- metrics
Polling NumberInterval - The data polling interval in seconds
AwsEuSovereignIntegrationsHealth, AwsEuSovereignIntegrationsHealthArgs
- Metrics
Polling intInterval - The data polling interval in seconds
- Metrics
Polling intInterval - The data polling interval in seconds
- metrics
Polling IntegerInterval - The data polling interval in seconds
- metrics
Polling numberInterval - The data polling interval in seconds
- metrics_
polling_ intinterval - The data polling interval in seconds
- metrics
Polling NumberInterval - The data polling interval in seconds
AwsEuSovereignIntegrationsTrustedAdvisor, AwsEuSovereignIntegrationsTrustedAdvisorArgs
- Metrics
Polling intInterval - The data polling interval in seconds
- Metrics
Polling intInterval - The data polling interval in seconds
- metrics
Polling IntegerInterval - The data polling interval in seconds
- metrics
Polling numberInterval - The data polling interval in seconds
- metrics_
polling_ intinterval - The data polling interval in seconds
- metrics
Polling NumberInterval - The data polling interval in seconds
AwsEuSovereignIntegrationsXRay, AwsEuSovereignIntegrationsXRayArgs
- Aws
Regions List<string> - Specify each AWS region that includes the resources that you want to monitor
- Metrics
Polling intInterval - The data polling interval in seconds
- Aws
Regions []string - Specify each AWS region that includes the resources that you want to monitor
- Metrics
Polling intInterval - The data polling interval in seconds
- aws
Regions List<String> - Specify each AWS region that includes the resources that you want to monitor
- metrics
Polling IntegerInterval - The data polling interval in seconds
- aws
Regions string[] - Specify each AWS region that includes the resources that you want to monitor
- metrics
Polling numberInterval - 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_ intinterval - The data polling interval in seconds
- aws
Regions List<String> - Specify each AWS region that includes the resources that you want to monitor
- metrics
Polling NumberInterval - 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
newrelicTerraform Provider.
