package awsroute53resolver import ( "github.com/aws/aws-cdk-go/awscdk/v2" ) // Properties for defining a `CfnFirewallDomainList`. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // cfnFirewallDomainListProps := &CfnFirewallDomainListProps{ // DomainFileUrl: jsii.String("domainFileUrl"), // Domains: []*string{ // jsii.String("domains"), // }, // Name: jsii.String("name"), // Tags: []cfnTag{ // &cfnTag{ // Key: jsii.String("key"), // Value: jsii.String("value"), // }, // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-firewalldomainlist.html // type CfnFirewallDomainListProps struct { // The fully qualified URL or URI of the file stored in Amazon Simple Storage Service (Amazon S3) that contains the list of domains to import. // // The file must be in an S3 bucket that's in the same Region as your DNS Firewall. The file must be a text file and must contain a single domain per line. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-firewalldomainlist.html#cfn-route53resolver-firewalldomainlist-domainfileurl // DomainFileUrl *string `field:"optional" json:"domainFileUrl" yaml:"domainFileUrl"` // A list of the domain lists that you have defined. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-firewalldomainlist.html#cfn-route53resolver-firewalldomainlist-domains // Domains *[]*string `field:"optional" json:"domains" yaml:"domains"` // The name of the domain list. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-firewalldomainlist.html#cfn-route53resolver-firewalldomainlist-name // Name *string `field:"optional" json:"name" yaml:"name"` // A list of the tag keys and values that you want to associate with the domain list. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-firewalldomainlist.html#cfn-route53resolver-firewalldomainlist-tags // Tags *[]*awscdk.CfnTag `field:"optional" json:"tags" yaml:"tags"` }