aws¶
This provider is a derived work of the Terraform Provider distributed under MPL 2.0. If you encounter a bug or missing feature, first check the pulumi/pulumi-datadog repo; however, if that doesn’t turn up anything, please consult the source terraform-providers/terraform-provider-datadog repo.
- class
pulumi_datadog.aws.Integration(resource_name, opts=None, account_id=None, account_specific_namespace_rules=None, filter_tags=None, host_tags=None, role_name=None, __props__=None, __name__=None, __opts__=None)¶ Provides a Datadog - Amazon Web Services integration resource. This can be used to create and manage Datadog - Amazon Web Services integration.
Update operations are currently not supported with datadog API so any change forces a new resource.
import pulumi import pulumi_datadog as datadog # Create a new Datadog - Amazon Web Services integration sandbox = datadog.aws.Integration("sandbox", account_id="1234567890", account_specific_namespace_rules={ "auto_scaling": False, "opsworks": False, }, filter_tags=["key:value"], host_tags=[ "key:value", "key2:value2", ], role_name="DatadogAWSIntegrationRole")
- Parameters
resource_name (str) – The name of the resource.
opts (pulumi.ResourceOptions) – Options for the resource.
account_id (pulumi.Input[str]) – Your AWS Account ID without dashes.
account_specific_namespace_rules (pulumi.Input[dict]) – Enables or disables metric collection for specific AWS namespaces for this AWS account only. A list of namespaces can be found at the available namespace rules API endpoint.
filter_tags (pulumi.Input[list]) – Array of EC2 tags (in the form
key:value) defines a filter that Datadog use when collecting metrics from EC2. Wildcards, such as?(for single characters) and*(for multiple characters) can also be used.host_tags (pulumi.Input[list]) – Array of tags (in the form key:value) to add to all hosts and metrics reporting through this integration.
role_name (pulumi.Input[str]) – Your Datadog role delegation name.
account_id: pulumi.Output[str] = None¶Your AWS Account ID without dashes.
account_specific_namespace_rules: pulumi.Output[dict] = None¶Enables or disables metric collection for specific AWS namespaces for this AWS account only. A list of namespaces can be found at the available namespace rules API endpoint.
external_id: pulumi.Output[str] = None¶AWS External ID
Array of EC2 tags (in the form
key:value) defines a filter that Datadog use when collecting metrics from EC2. Wildcards, such as?(for single characters) and*(for multiple characters) can also be used.
Array of tags (in the form key:value) to add to all hosts and metrics reporting through this integration.
role_name: pulumi.Output[str] = None¶Your Datadog role delegation name.
- static
get(resource_name, id, opts=None, account_id=None, account_specific_namespace_rules=None, external_id=None, filter_tags=None, host_tags=None, role_name=None)¶ Get an existing Integration resource’s state with the given name, id, and optional extra properties used to qualify the lookup.
- Parameters
resource_name (str) – The unique name of the resulting resource.
id (str) – The unique provider ID of the resource to lookup.
opts (pulumi.ResourceOptions) – Options for the resource.
account_id (pulumi.Input[str]) – Your AWS Account ID without dashes.
account_specific_namespace_rules (pulumi.Input[dict]) –
Enables or disables metric collection for specific AWS namespaces for this AWS account only. A list of namespaces can be found at the available namespace rules API endpoint.
external_id (pulumi.Input[str]) – AWS External ID
filter_tags (pulumi.Input[list]) – Array of EC2 tags (in the form
key:value) defines a filter that Datadog use when collecting metrics from EC2. Wildcards, such as?(for single characters) and*(for multiple characters) can also be used.host_tags (pulumi.Input[list]) – Array of tags (in the form key:value) to add to all hosts and metrics reporting through this integration.
role_name (pulumi.Input[str]) – Your Datadog role delegation name.
translate_output_property(prop)¶Provides subclasses of Resource an opportunity to translate names of output properties into a format of their choosing before writing those properties to the resource object.
- Parameters
prop (str) – A property name.
- Returns
A potentially transformed property name.
- Return type
str
translate_input_property(prop)¶Provides subclasses of Resource an opportunity to translate names of input properties into a format of their choosing before sending those properties to the Pulumi engine.
- Parameters
prop (str) – A property name.
- Returns
A potentially transformed property name.
- Return type
str