import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface AwsmtProviderConfig { /** * The maximum number of times the provider will retry a failed aws operation. Defaults to 10 * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/spring-media/awsmt/2.5.1/docs#max_retry_attempts AwsmtProvider#max_retry_attempts} */ readonly maxRetryAttempts?: number; /** * The profile generated by the SSO login. You can find the profile(s) name in '~/.aws/config'. SSO login will not be used if the profile name is not specified and no environmental variable called 'aws_profile' is found. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/spring-media/awsmt/2.5.1/docs#profile AwsmtProvider#profile} */ readonly profile?: string; /** * AWS region. defaults to 'eu-central-1'. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/spring-media/awsmt/2.5.1/docs#region AwsmtProvider#region} */ readonly region?: string; /** * Alias name * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/spring-media/awsmt/2.5.1/docs#alias AwsmtProvider#alias} */ readonly alias?: string; } /** * Represents a {@link https://registry.terraform.io/providers/spring-media/awsmt/2.5.1/docs awsmt} */ export declare class AwsmtProvider extends cdktf.TerraformProvider { static readonly tfResourceType = "awsmt"; /** * Generates CDKTF code for importing a AwsmtProvider resource upon running "cdktf plan " * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the AwsmtProvider to import * @param importFromId The id of the existing AwsmtProvider that should be imported. Refer to the {@link https://registry.terraform.io/providers/spring-media/awsmt/2.5.1/docs#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the AwsmtProvider to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any; /** * Create a new {@link https://registry.terraform.io/providers/spring-media/awsmt/2.5.1/docs awsmt} 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 AwsmtProviderConfig = {} */ constructor(scope: Construct, id: string, config?: AwsmtProviderConfig); private _maxRetryAttempts?; get maxRetryAttempts(): number | undefined; set maxRetryAttempts(value: number | undefined); resetMaxRetryAttempts(): void; get maxRetryAttemptsInput(): number; private _profile?; get profile(): string | undefined; set profile(value: string | undefined); resetProfile(): void; get profileInput(): string; private _region?; get region(): string | undefined; set region(value: string | undefined); resetRegion(): void; get regionInput(): string; private _alias?; get alias(): string | undefined; set alias(value: string | undefined); resetAlias(): void; get aliasInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }