UNPKG

@cdktf/provider-aws

Version:

Prebuilt aws Provider for Terraform CDK (cdktf)

201 lines (200 loc) 9.42 kB
/** * Copyright (c) HashiCorp, Inc. * SPDX-License-Identifier: MPL-2.0 */ import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface WafRuleGroupConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/waf_rule_group#id WafRuleGroup#id} * * Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. * If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable. */ readonly id?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/waf_rule_group#metric_name WafRuleGroup#metric_name} */ readonly metricName: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/waf_rule_group#name WafRuleGroup#name} */ readonly name: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/waf_rule_group#tags WafRuleGroup#tags} */ readonly tags?: { [key: string]: string; }; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/waf_rule_group#tags_all WafRuleGroup#tags_all} */ readonly tagsAll?: { [key: string]: string; }; /** * activated_rule block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/waf_rule_group#activated_rule WafRuleGroup#activated_rule} */ readonly activatedRule?: WafRuleGroupActivatedRule[] | cdktf.IResolvable; } export interface WafRuleGroupActivatedRuleAction { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/waf_rule_group#type WafRuleGroup#type} */ readonly type: string; } export declare function wafRuleGroupActivatedRuleActionToTerraform(struct?: WafRuleGroupActivatedRuleActionOutputReference | WafRuleGroupActivatedRuleAction): any; export declare function wafRuleGroupActivatedRuleActionToHclTerraform(struct?: WafRuleGroupActivatedRuleActionOutputReference | WafRuleGroupActivatedRuleAction): any; export declare class WafRuleGroupActivatedRuleActionOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string); get internalValue(): WafRuleGroupActivatedRuleAction | undefined; set internalValue(value: WafRuleGroupActivatedRuleAction | undefined); private _type?; get type(): string; set type(value: string); get typeInput(): string | undefined; } export interface WafRuleGroupActivatedRule { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/waf_rule_group#priority WafRuleGroup#priority} */ readonly priority: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/waf_rule_group#rule_id WafRuleGroup#rule_id} */ readonly ruleId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/waf_rule_group#type WafRuleGroup#type} */ readonly type?: string; /** * action block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/waf_rule_group#action WafRuleGroup#action} */ readonly action: WafRuleGroupActivatedRuleAction; } export declare function wafRuleGroupActivatedRuleToTerraform(struct?: WafRuleGroupActivatedRule | cdktf.IResolvable): any; export declare function wafRuleGroupActivatedRuleToHclTerraform(struct?: WafRuleGroupActivatedRule | cdktf.IResolvable): any; export declare class WafRuleGroupActivatedRuleOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): WafRuleGroupActivatedRule | cdktf.IResolvable | undefined; set internalValue(value: WafRuleGroupActivatedRule | cdktf.IResolvable | undefined); private _priority?; get priority(): number; set priority(value: number); get priorityInput(): number | undefined; private _ruleId?; get ruleId(): string; set ruleId(value: string); get ruleIdInput(): string | undefined; private _type?; get type(): string; set type(value: string); resetType(): void; get typeInput(): string | undefined; private _action; get action(): WafRuleGroupActivatedRuleActionOutputReference; putAction(value: WafRuleGroupActivatedRuleAction): void; get actionInput(): WafRuleGroupActivatedRuleAction | undefined; } export declare class WafRuleGroupActivatedRuleList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: WafRuleGroupActivatedRule[] | cdktf.IResolvable; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): WafRuleGroupActivatedRuleOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/waf_rule_group aws_waf_rule_group} */ export declare class WafRuleGroup extends cdktf.TerraformResource { static readonly tfResourceType = "aws_waf_rule_group"; /** * Generates CDKTF code for importing a WafRuleGroup resource upon running "cdktf plan <stack-name>" * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the WafRuleGroup to import * @param importFromId The id of the existing WafRuleGroup that should be imported. Refer to the {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/waf_rule_group#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the WafRuleGroup to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): cdktf.ImportableResource; /** * Create a new {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/waf_rule_group aws_waf_rule_group} Resource * * @param scope The scope in which to define this construct * @param id The scoped construct ID. Must be unique amongst siblings in the same scope * @param options WafRuleGroupConfig */ constructor(scope: Construct, id: string, config: WafRuleGroupConfig); get arn(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string | undefined; private _metricName?; get metricName(): string; set metricName(value: string); get metricNameInput(): string | undefined; private _name?; get name(): string; set name(value: string); get nameInput(): string | undefined; private _tags?; get tags(): { [key: string]: string; }; set tags(value: { [key: string]: string; }); resetTags(): void; get tagsInput(): { [key: string]: string; } | undefined; private _tagsAll?; get tagsAll(): { [key: string]: string; }; set tagsAll(value: { [key: string]: string; }); resetTagsAll(): void; get tagsAllInput(): { [key: string]: string; } | undefined; private _activatedRule; get activatedRule(): WafRuleGroupActivatedRuleList; putActivatedRule(value: WafRuleGroupActivatedRule[] | cdktf.IResolvable): void; resetActivatedRule(): void; get activatedRuleInput(): cdktf.IResolvable | WafRuleGroupActivatedRule[] | undefined; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }