Try AWS Native preview for resources not in the classic version.
aws.route53.ResolverFirewallRuleGroup
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
Provides a Route 53 Resolver DNS Firewall rule group resource.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.route53.ResolverFirewallRuleGroup("example", {name: "example"});
import pulumi
import pulumi_aws as aws
example = aws.route53.ResolverFirewallRuleGroup("example", name="example")
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/route53"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := route53.NewResolverFirewallRuleGroup(ctx, "example", &route53.ResolverFirewallRuleGroupArgs{
Name: pulumi.String("example"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Route53.ResolverFirewallRuleGroup("example", new()
{
Name = "example",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.route53.ResolverFirewallRuleGroup;
import com.pulumi.aws.route53.ResolverFirewallRuleGroupArgs;
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 example = new ResolverFirewallRuleGroup("example", ResolverFirewallRuleGroupArgs.builder()
.name("example")
.build());
}
}
resources:
example:
type: aws:route53:ResolverFirewallRuleGroup
properties:
name: example
Create ResolverFirewallRuleGroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ResolverFirewallRuleGroup(name: string, args?: ResolverFirewallRuleGroupArgs, opts?: CustomResourceOptions);
@overload
def ResolverFirewallRuleGroup(resource_name: str,
args: Optional[ResolverFirewallRuleGroupArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ResolverFirewallRuleGroup(resource_name: str,
opts: Optional[ResourceOptions] = None,
name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewResolverFirewallRuleGroup(ctx *Context, name string, args *ResolverFirewallRuleGroupArgs, opts ...ResourceOption) (*ResolverFirewallRuleGroup, error)
public ResolverFirewallRuleGroup(string name, ResolverFirewallRuleGroupArgs? args = null, CustomResourceOptions? opts = null)
public ResolverFirewallRuleGroup(String name, ResolverFirewallRuleGroupArgs args)
public ResolverFirewallRuleGroup(String name, ResolverFirewallRuleGroupArgs args, CustomResourceOptions options)
type: aws:route53:ResolverFirewallRuleGroup
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 ResolverFirewallRuleGroupArgs
- 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 ResolverFirewallRuleGroupArgs
- 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 ResolverFirewallRuleGroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ResolverFirewallRuleGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ResolverFirewallRuleGroupArgs
- 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 resolverFirewallRuleGroupResource = new Aws.Route53.ResolverFirewallRuleGroup("resolverFirewallRuleGroupResource", new()
{
Name = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := route53.NewResolverFirewallRuleGroup(ctx, "resolverFirewallRuleGroupResource", &route53.ResolverFirewallRuleGroupArgs{
Name: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var resolverFirewallRuleGroupResource = new ResolverFirewallRuleGroup("resolverFirewallRuleGroupResource", ResolverFirewallRuleGroupArgs.builder()
.name("string")
.tags(Map.of("string", "string"))
.build());
resolver_firewall_rule_group_resource = aws.route53.ResolverFirewallRuleGroup("resolverFirewallRuleGroupResource",
name="string",
tags={
"string": "string",
})
const resolverFirewallRuleGroupResource = new aws.route53.ResolverFirewallRuleGroup("resolverFirewallRuleGroupResource", {
name: "string",
tags: {
string: "string",
},
});
type: aws:route53:ResolverFirewallRuleGroup
properties:
name: string
tags:
string: string
ResolverFirewallRuleGroup Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The ResolverFirewallRuleGroup resource accepts the following input properties:
- Name string
- A name that lets you identify the rule group, to manage and use it.
- Dictionary<string, string>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- Name string
- A name that lets you identify the rule group, to manage and use it.
- map[string]string
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- name String
- A name that lets you identify the rule group, to manage and use it.
- Map<String,String>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- name string
- A name that lets you identify the rule group, to manage and use it.
- {[key: string]: string}
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- name str
- A name that lets you identify the rule group, to manage and use it.
- Mapping[str, str]
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- name String
- A name that lets you identify the rule group, to manage and use it.
- Map<String>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
Outputs
All input properties are implicitly available as output properties. Additionally, the ResolverFirewallRuleGroup resource produces the following output properties:
- Arn string
- The ARN (Amazon Resource Name) of the rule group.
- Id string
- The provider-assigned unique ID for this managed resource.
- Owner
Id string - The AWS account ID for the account that created the rule group. When a rule group is shared with your account, this is the account that has shared the rule group with you.
- string
- Whether the rule group is shared with other AWS accounts, or was shared with the current account by another AWS account. Sharing is configured through AWS Resource Access Manager (AWS RAM). Valid values:
NOT_SHARED
,SHARED_BY_ME
,SHARED_WITH_ME
- Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- Arn string
- The ARN (Amazon Resource Name) of the rule group.
- Id string
- The provider-assigned unique ID for this managed resource.
- Owner
Id string - The AWS account ID for the account that created the rule group. When a rule group is shared with your account, this is the account that has shared the rule group with you.
- string
- Whether the rule group is shared with other AWS accounts, or was shared with the current account by another AWS account. Sharing is configured through AWS Resource Access Manager (AWS RAM). Valid values:
NOT_SHARED
,SHARED_BY_ME
,SHARED_WITH_ME
- map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- The ARN (Amazon Resource Name) of the rule group.
- id String
- The provider-assigned unique ID for this managed resource.
- owner
Id String - The AWS account ID for the account that created the rule group. When a rule group is shared with your account, this is the account that has shared the rule group with you.
- String
- Whether the rule group is shared with other AWS accounts, or was shared with the current account by another AWS account. Sharing is configured through AWS Resource Access Manager (AWS RAM). Valid values:
NOT_SHARED
,SHARED_BY_ME
,SHARED_WITH_ME
- Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn string
- The ARN (Amazon Resource Name) of the rule group.
- id string
- The provider-assigned unique ID for this managed resource.
- owner
Id string - The AWS account ID for the account that created the rule group. When a rule group is shared with your account, this is the account that has shared the rule group with you.
- string
- Whether the rule group is shared with other AWS accounts, or was shared with the current account by another AWS account. Sharing is configured through AWS Resource Access Manager (AWS RAM). Valid values:
NOT_SHARED
,SHARED_BY_ME
,SHARED_WITH_ME
- {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn str
- The ARN (Amazon Resource Name) of the rule group.
- id str
- The provider-assigned unique ID for this managed resource.
- owner_
id str - The AWS account ID for the account that created the rule group. When a rule group is shared with your account, this is the account that has shared the rule group with you.
- str
- Whether the rule group is shared with other AWS accounts, or was shared with the current account by another AWS account. Sharing is configured through AWS Resource Access Manager (AWS RAM). Valid values:
NOT_SHARED
,SHARED_BY_ME
,SHARED_WITH_ME
- Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- The ARN (Amazon Resource Name) of the rule group.
- id String
- The provider-assigned unique ID for this managed resource.
- owner
Id String - The AWS account ID for the account that created the rule group. When a rule group is shared with your account, this is the account that has shared the rule group with you.
- String
- Whether the rule group is shared with other AWS accounts, or was shared with the current account by another AWS account. Sharing is configured through AWS Resource Access Manager (AWS RAM). Valid values:
NOT_SHARED
,SHARED_BY_ME
,SHARED_WITH_ME
- Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
Look up Existing ResolverFirewallRuleGroup Resource
Get an existing ResolverFirewallRuleGroup 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?: ResolverFirewallRuleGroupState, opts?: CustomResourceOptions): ResolverFirewallRuleGroup
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
arn: Optional[str] = None,
name: Optional[str] = None,
owner_id: Optional[str] = None,
share_status: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None) -> ResolverFirewallRuleGroup
func GetResolverFirewallRuleGroup(ctx *Context, name string, id IDInput, state *ResolverFirewallRuleGroupState, opts ...ResourceOption) (*ResolverFirewallRuleGroup, error)
public static ResolverFirewallRuleGroup Get(string name, Input<string> id, ResolverFirewallRuleGroupState? state, CustomResourceOptions? opts = null)
public static ResolverFirewallRuleGroup get(String name, Output<String> id, ResolverFirewallRuleGroupState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Arn string
- The ARN (Amazon Resource Name) of the rule group.
- Name string
- A name that lets you identify the rule group, to manage and use it.
- Owner
Id string - The AWS account ID for the account that created the rule group. When a rule group is shared with your account, this is the account that has shared the rule group with you.
- string
- Whether the rule group is shared with other AWS accounts, or was shared with the current account by another AWS account. Sharing is configured through AWS Resource Access Manager (AWS RAM). Valid values:
NOT_SHARED
,SHARED_BY_ME
,SHARED_WITH_ME
- Dictionary<string, string>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- Arn string
- The ARN (Amazon Resource Name) of the rule group.
- Name string
- A name that lets you identify the rule group, to manage and use it.
- Owner
Id string - The AWS account ID for the account that created the rule group. When a rule group is shared with your account, this is the account that has shared the rule group with you.
- string
- Whether the rule group is shared with other AWS accounts, or was shared with the current account by another AWS account. Sharing is configured through AWS Resource Access Manager (AWS RAM). Valid values:
NOT_SHARED
,SHARED_BY_ME
,SHARED_WITH_ME
- map[string]string
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- The ARN (Amazon Resource Name) of the rule group.
- name String
- A name that lets you identify the rule group, to manage and use it.
- owner
Id String - The AWS account ID for the account that created the rule group. When a rule group is shared with your account, this is the account that has shared the rule group with you.
- String
- Whether the rule group is shared with other AWS accounts, or was shared with the current account by another AWS account. Sharing is configured through AWS Resource Access Manager (AWS RAM). Valid values:
NOT_SHARED
,SHARED_BY_ME
,SHARED_WITH_ME
- Map<String,String>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn string
- The ARN (Amazon Resource Name) of the rule group.
- name string
- A name that lets you identify the rule group, to manage and use it.
- owner
Id string - The AWS account ID for the account that created the rule group. When a rule group is shared with your account, this is the account that has shared the rule group with you.
- string
- Whether the rule group is shared with other AWS accounts, or was shared with the current account by another AWS account. Sharing is configured through AWS Resource Access Manager (AWS RAM). Valid values:
NOT_SHARED
,SHARED_BY_ME
,SHARED_WITH_ME
- {[key: string]: string}
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn str
- The ARN (Amazon Resource Name) of the rule group.
- name str
- A name that lets you identify the rule group, to manage and use it.
- owner_
id str - The AWS account ID for the account that created the rule group. When a rule group is shared with your account, this is the account that has shared the rule group with you.
- str
- Whether the rule group is shared with other AWS accounts, or was shared with the current account by another AWS account. Sharing is configured through AWS Resource Access Manager (AWS RAM). Valid values:
NOT_SHARED
,SHARED_BY_ME
,SHARED_WITH_ME
- Mapping[str, str]
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- The ARN (Amazon Resource Name) of the rule group.
- name String
- A name that lets you identify the rule group, to manage and use it.
- owner
Id String - The AWS account ID for the account that created the rule group. When a rule group is shared with your account, this is the account that has shared the rule group with you.
- String
- Whether the rule group is shared with other AWS accounts, or was shared with the current account by another AWS account. Sharing is configured through AWS Resource Access Manager (AWS RAM). Valid values:
NOT_SHARED
,SHARED_BY_ME
,SHARED_WITH_ME
- Map<String>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
Import
Using pulumi import
, import Route 53 Resolver DNS Firewall rule groups using the Route 53 Resolver DNS Firewall rule group ID. For example:
$ pulumi import aws:route53/resolverFirewallRuleGroup:ResolverFirewallRuleGroup example rslvr-frg-0123456789abcdef
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aws
Terraform Provider.
Try AWS Native preview for resources not in the classic version.