UNPKG

@cdktf/provider-aws

Version:

Prebuilt aws Provider for Terraform CDK (cdktf)

116 lines (115 loc) 5.56 kB
/** * Copyright (c) HashiCorp, Inc. * SPDX-License-Identifier: MPL-2.0 */ import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface QuicksightIpRestrictionConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/quicksight_ip_restriction#aws_account_id QuicksightIpRestriction#aws_account_id} */ readonly awsAccountId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/quicksight_ip_restriction#enabled QuicksightIpRestriction#enabled} */ readonly enabled: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/quicksight_ip_restriction#ip_restriction_rule_map QuicksightIpRestriction#ip_restriction_rule_map} */ readonly ipRestrictionRuleMap?: { [key: string]: string; }; /** * Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the [provider configuration](https://registry.terraform.io/providers/hashicorp/aws/latest/docs#aws-configuration-reference). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/quicksight_ip_restriction#region QuicksightIpRestriction#region} */ readonly region?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/quicksight_ip_restriction#vpc_endpoint_id_restriction_rule_map QuicksightIpRestriction#vpc_endpoint_id_restriction_rule_map} */ readonly vpcEndpointIdRestrictionRuleMap?: { [key: string]: string; }; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/quicksight_ip_restriction#vpc_id_restriction_rule_map QuicksightIpRestriction#vpc_id_restriction_rule_map} */ readonly vpcIdRestrictionRuleMap?: { [key: string]: string; }; } /** * Represents a {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/quicksight_ip_restriction aws_quicksight_ip_restriction} */ export declare class QuicksightIpRestriction extends cdktf.TerraformResource { static readonly tfResourceType = "aws_quicksight_ip_restriction"; /** * Generates CDKTF code for importing a QuicksightIpRestriction 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 QuicksightIpRestriction to import * @param importFromId The id of the existing QuicksightIpRestriction that should be imported. Refer to the {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/quicksight_ip_restriction#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the QuicksightIpRestriction 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/quicksight_ip_restriction aws_quicksight_ip_restriction} 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 QuicksightIpRestrictionConfig */ constructor(scope: Construct, id: string, config: QuicksightIpRestrictionConfig); private _awsAccountId?; get awsAccountId(): string; set awsAccountId(value: string); resetAwsAccountId(): void; get awsAccountIdInput(): string | undefined; private _enabled?; get enabled(): boolean | cdktf.IResolvable; set enabled(value: boolean | cdktf.IResolvable); get enabledInput(): boolean | cdktf.IResolvable | undefined; private _ipRestrictionRuleMap?; get ipRestrictionRuleMap(): { [key: string]: string; }; set ipRestrictionRuleMap(value: { [key: string]: string; }); resetIpRestrictionRuleMap(): void; get ipRestrictionRuleMapInput(): { [key: string]: string; } | undefined; private _region?; get region(): string; set region(value: string); resetRegion(): void; get regionInput(): string | undefined; private _vpcEndpointIdRestrictionRuleMap?; get vpcEndpointIdRestrictionRuleMap(): { [key: string]: string; }; set vpcEndpointIdRestrictionRuleMap(value: { [key: string]: string; }); resetVpcEndpointIdRestrictionRuleMap(): void; get vpcEndpointIdRestrictionRuleMapInput(): { [key: string]: string; } | undefined; private _vpcIdRestrictionRuleMap?; get vpcIdRestrictionRuleMap(): { [key: string]: string; }; set vpcIdRestrictionRuleMap(value: { [key: string]: string; }); resetVpcIdRestrictionRuleMap(): void; get vpcIdRestrictionRuleMapInput(): { [key: string]: string; } | undefined; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }