@cdktf/provider-aws
Version:
Prebuilt aws Provider for Terraform CDK (cdktf)
118 lines (117 loc) • 6.84 kB
TypeScript
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface QuicksightKeyRegistrationConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/quicksight_key_registration#aws_account_id QuicksightKeyRegistration#aws_account_id}
*/
readonly awsAccountId?: 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_key_registration#region QuicksightKeyRegistration#region}
*/
readonly region?: string;
/**
* key_registration block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/quicksight_key_registration#key_registration QuicksightKeyRegistration#key_registration}
*/
readonly keyRegistration?: QuicksightKeyRegistrationKeyRegistration[] | cdktf.IResolvable;
}
export interface QuicksightKeyRegistrationKeyRegistration {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/quicksight_key_registration#default_key QuicksightKeyRegistration#default_key}
*/
readonly defaultKey?: boolean | cdktf.IResolvable;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/quicksight_key_registration#key_arn QuicksightKeyRegistration#key_arn}
*/
readonly keyArn: string;
}
export declare function quicksightKeyRegistrationKeyRegistrationToTerraform(struct?: QuicksightKeyRegistrationKeyRegistration | cdktf.IResolvable): any;
export declare function quicksightKeyRegistrationKeyRegistrationToHclTerraform(struct?: QuicksightKeyRegistrationKeyRegistration | cdktf.IResolvable): any;
export declare class QuicksightKeyRegistrationKeyRegistrationOutputReference 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(): QuicksightKeyRegistrationKeyRegistration | cdktf.IResolvable | undefined;
set internalValue(value: QuicksightKeyRegistrationKeyRegistration | cdktf.IResolvable | undefined);
private _defaultKey?;
get defaultKey(): boolean | cdktf.IResolvable;
set defaultKey(value: boolean | cdktf.IResolvable);
resetDefaultKey(): void;
get defaultKeyInput(): boolean | cdktf.IResolvable | undefined;
private _keyArn?;
get keyArn(): string;
set keyArn(value: string);
get keyArnInput(): string | undefined;
}
export declare class QuicksightKeyRegistrationKeyRegistrationList extends cdktf.ComplexList {
protected terraformResource: cdktf.IInterpolatingParent;
protected terraformAttribute: string;
protected wrapsSet: boolean;
internalValue?: QuicksightKeyRegistrationKeyRegistration[] | 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): QuicksightKeyRegistrationKeyRegistrationOutputReference;
}
/**
* Represents a {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/quicksight_key_registration aws_quicksight_key_registration}
*/
export declare class QuicksightKeyRegistration extends cdktf.TerraformResource {
static readonly tfResourceType = "aws_quicksight_key_registration";
/**
* Generates CDKTF code for importing a QuicksightKeyRegistration 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 QuicksightKeyRegistration to import
* @param importFromId The id of the existing QuicksightKeyRegistration that should be imported. Refer to the {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/quicksight_key_registration#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the QuicksightKeyRegistration 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_key_registration aws_quicksight_key_registration} 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 QuicksightKeyRegistrationConfig = {}
*/
constructor(scope: Construct, id: string, config?: QuicksightKeyRegistrationConfig);
private _awsAccountId?;
get awsAccountId(): string;
set awsAccountId(value: string);
resetAwsAccountId(): void;
get awsAccountIdInput(): string | undefined;
private _region?;
get region(): string;
set region(value: string);
resetRegion(): void;
get regionInput(): string | undefined;
private _keyRegistration;
get keyRegistration(): QuicksightKeyRegistrationKeyRegistrationList;
putKeyRegistration(value: QuicksightKeyRegistrationKeyRegistration[] | cdktf.IResolvable): void;
resetKeyRegistration(): void;
get keyRegistrationInput(): cdktf.IResolvable | QuicksightKeyRegistrationKeyRegistration[] | undefined;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}