@cdktf/provider-aws
Version:
Prebuilt aws Provider for Terraform CDK (cdktf)
943 lines • 147 kB
JavaScript
"use strict";
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GlueCatalogTableOptimizer = exports.GlueCatalogTableOptimizerConfigurationList = exports.GlueCatalogTableOptimizerConfigurationOutputReference = exports.GlueCatalogTableOptimizerConfigurationRetentionConfigurationList = exports.GlueCatalogTableOptimizerConfigurationRetentionConfigurationOutputReference = exports.GlueCatalogTableOptimizerConfigurationRetentionConfigurationIcebergConfigurationList = exports.GlueCatalogTableOptimizerConfigurationRetentionConfigurationIcebergConfigurationOutputReference = exports.GlueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationList = exports.GlueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationOutputReference = exports.GlueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationIcebergConfigurationList = exports.GlueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationIcebergConfigurationOutputReference = void 0;
exports.glueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationIcebergConfigurationToTerraform = glueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationIcebergConfigurationToTerraform;
exports.glueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationIcebergConfigurationToHclTerraform = glueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationIcebergConfigurationToHclTerraform;
exports.glueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationToTerraform = glueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationToTerraform;
exports.glueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationToHclTerraform = glueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationToHclTerraform;
exports.glueCatalogTableOptimizerConfigurationRetentionConfigurationIcebergConfigurationToTerraform = glueCatalogTableOptimizerConfigurationRetentionConfigurationIcebergConfigurationToTerraform;
exports.glueCatalogTableOptimizerConfigurationRetentionConfigurationIcebergConfigurationToHclTerraform = glueCatalogTableOptimizerConfigurationRetentionConfigurationIcebergConfigurationToHclTerraform;
exports.glueCatalogTableOptimizerConfigurationRetentionConfigurationToTerraform = glueCatalogTableOptimizerConfigurationRetentionConfigurationToTerraform;
exports.glueCatalogTableOptimizerConfigurationRetentionConfigurationToHclTerraform = glueCatalogTableOptimizerConfigurationRetentionConfigurationToHclTerraform;
exports.glueCatalogTableOptimizerConfigurationToTerraform = glueCatalogTableOptimizerConfigurationToTerraform;
exports.glueCatalogTableOptimizerConfigurationToHclTerraform = glueCatalogTableOptimizerConfigurationToHclTerraform;
const JSII_RTTI_SYMBOL_1 = Symbol.for("jsii.rtti");
const cdktf = require("cdktf");
function glueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationIcebergConfigurationToTerraform(struct) {
if (!cdktf.canInspect(struct) || cdktf.Tokenization.isResolvable(struct)) {
return struct;
}
if (cdktf.isComplexElement(struct)) {
throw new Error("A complex element was used as configuration, this is not supported: https://cdk.tf/complex-object-as-configuration");
}
return {
location: cdktf.stringToTerraform(struct.location),
orphan_file_retention_period_in_days: cdktf.numberToTerraform(struct.orphanFileRetentionPeriodInDays),
run_rate_in_hours: cdktf.numberToTerraform(struct.runRateInHours),
};
}
function glueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationIcebergConfigurationToHclTerraform(struct) {
if (!cdktf.canInspect(struct) || cdktf.Tokenization.isResolvable(struct)) {
return struct;
}
if (cdktf.isComplexElement(struct)) {
throw new Error("A complex element was used as configuration, this is not supported: https://cdk.tf/complex-object-as-configuration");
}
const attrs = {
location: {
value: cdktf.stringToHclTerraform(struct.location),
isBlock: false,
type: "simple",
storageClassType: "string",
},
orphan_file_retention_period_in_days: {
value: cdktf.numberToHclTerraform(struct.orphanFileRetentionPeriodInDays),
isBlock: false,
type: "simple",
storageClassType: "number",
},
run_rate_in_hours: {
value: cdktf.numberToHclTerraform(struct.runRateInHours),
isBlock: false,
type: "simple",
storageClassType: "number",
},
};
// remove undefined attributes
return Object.fromEntries(Object.entries(attrs).filter(([_, value]) => value !== undefined && value.value !== undefined));
}
class GlueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationIcebergConfigurationOutputReference extends cdktf.ComplexObject {
/**
* @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, terraformAttribute, complexObjectIndex, complexObjectIsFromSet) {
super(terraformResource, terraformAttribute, complexObjectIsFromSet, complexObjectIndex);
this.isEmptyObject = false;
}
get internalValue() {
if (this.resolvableValue) {
return this.resolvableValue;
}
let hasAnyValues = this.isEmptyObject;
const internalValueResult = {};
if (this._location !== undefined) {
hasAnyValues = true;
internalValueResult.location = this._location;
}
if (this._orphanFileRetentionPeriodInDays !== undefined) {
hasAnyValues = true;
internalValueResult.orphanFileRetentionPeriodInDays = this._orphanFileRetentionPeriodInDays;
}
if (this._runRateInHours !== undefined) {
hasAnyValues = true;
internalValueResult.runRateInHours = this._runRateInHours;
}
return hasAnyValues ? internalValueResult : undefined;
}
set internalValue(value) {
if (value === undefined) {
this.isEmptyObject = false;
this.resolvableValue = undefined;
this._location = undefined;
this._orphanFileRetentionPeriodInDays = undefined;
this._runRateInHours = undefined;
}
else if (cdktf.Tokenization.isResolvable(value)) {
this.isEmptyObject = false;
this.resolvableValue = value;
}
else {
this.isEmptyObject = Object.keys(value).length === 0;
this.resolvableValue = undefined;
this._location = value.location;
this._orphanFileRetentionPeriodInDays = value.orphanFileRetentionPeriodInDays;
this._runRateInHours = value.runRateInHours;
}
}
get location() {
return this.getStringAttribute('location');
}
set location(value) {
this._location = value;
}
resetLocation() {
this._location = undefined;
}
// Temporarily expose input value. Use with caution.
get locationInput() {
return this._location;
}
get orphanFileRetentionPeriodInDays() {
return this.getNumberAttribute('orphan_file_retention_period_in_days');
}
set orphanFileRetentionPeriodInDays(value) {
this._orphanFileRetentionPeriodInDays = value;
}
resetOrphanFileRetentionPeriodInDays() {
this._orphanFileRetentionPeriodInDays = undefined;
}
// Temporarily expose input value. Use with caution.
get orphanFileRetentionPeriodInDaysInput() {
return this._orphanFileRetentionPeriodInDays;
}
get runRateInHours() {
return this.getNumberAttribute('run_rate_in_hours');
}
set runRateInHours(value) {
this._runRateInHours = value;
}
resetRunRateInHours() {
this._runRateInHours = undefined;
}
// Temporarily expose input value. Use with caution.
get runRateInHoursInput() {
return this._runRateInHours;
}
}
exports.GlueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationIcebergConfigurationOutputReference = GlueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationIcebergConfigurationOutputReference;
_a = JSII_RTTI_SYMBOL_1;
GlueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationIcebergConfigurationOutputReference[_a] = { fqn: "@cdktf/provider-aws.glueCatalogTableOptimizer.GlueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationIcebergConfigurationOutputReference", version: "21.22.1" };
class GlueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationIcebergConfigurationList extends cdktf.ComplexList {
/**
* @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, terraformAttribute, wrapsSet) {
super(terraformResource, terraformAttribute, wrapsSet);
this.terraformResource = terraformResource;
this.terraformAttribute = terraformAttribute;
this.wrapsSet = wrapsSet;
}
/**
* @param index the index of the item to return
*/
get(index) {
return new GlueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationIcebergConfigurationOutputReference(this.terraformResource, this.terraformAttribute, index, this.wrapsSet);
}
}
exports.GlueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationIcebergConfigurationList = GlueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationIcebergConfigurationList;
_b = JSII_RTTI_SYMBOL_1;
GlueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationIcebergConfigurationList[_b] = { fqn: "@cdktf/provider-aws.glueCatalogTableOptimizer.GlueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationIcebergConfigurationList", version: "21.22.1" };
function glueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationToTerraform(struct) {
if (!cdktf.canInspect(struct) || cdktf.Tokenization.isResolvable(struct)) {
return struct;
}
if (cdktf.isComplexElement(struct)) {
throw new Error("A complex element was used as configuration, this is not supported: https://cdk.tf/complex-object-as-configuration");
}
return {
iceberg_configuration: cdktf.listMapper(glueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationIcebergConfigurationToTerraform, true)(struct.icebergConfiguration),
};
}
function glueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationToHclTerraform(struct) {
if (!cdktf.canInspect(struct) || cdktf.Tokenization.isResolvable(struct)) {
return struct;
}
if (cdktf.isComplexElement(struct)) {
throw new Error("A complex element was used as configuration, this is not supported: https://cdk.tf/complex-object-as-configuration");
}
const attrs = {
iceberg_configuration: {
value: cdktf.listMapperHcl(glueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationIcebergConfigurationToHclTerraform, true)(struct.icebergConfiguration),
isBlock: true,
type: "list",
storageClassType: "GlueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationIcebergConfigurationList",
},
};
// remove undefined attributes
return Object.fromEntries(Object.entries(attrs).filter(([_, value]) => value !== undefined && value.value !== undefined));
}
class GlueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationOutputReference extends cdktf.ComplexObject {
/**
* @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, terraformAttribute, complexObjectIndex, complexObjectIsFromSet) {
super(terraformResource, terraformAttribute, complexObjectIsFromSet, complexObjectIndex);
this.isEmptyObject = false;
// iceberg_configuration - computed: false, optional: true, required: false
this._icebergConfiguration = new GlueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationIcebergConfigurationList(this, "iceberg_configuration", false);
}
get internalValue() {
if (this.resolvableValue) {
return this.resolvableValue;
}
let hasAnyValues = this.isEmptyObject;
const internalValueResult = {};
if (this._icebergConfiguration?.internalValue !== undefined) {
hasAnyValues = true;
internalValueResult.icebergConfiguration = this._icebergConfiguration?.internalValue;
}
return hasAnyValues ? internalValueResult : undefined;
}
set internalValue(value) {
if (value === undefined) {
this.isEmptyObject = false;
this.resolvableValue = undefined;
this._icebergConfiguration.internalValue = undefined;
}
else if (cdktf.Tokenization.isResolvable(value)) {
this.isEmptyObject = false;
this.resolvableValue = value;
}
else {
this.isEmptyObject = Object.keys(value).length === 0;
this.resolvableValue = undefined;
this._icebergConfiguration.internalValue = value.icebergConfiguration;
}
}
get icebergConfiguration() {
return this._icebergConfiguration;
}
putIcebergConfiguration(value) {
this._icebergConfiguration.internalValue = value;
}
resetIcebergConfiguration() {
this._icebergConfiguration.internalValue = undefined;
}
// Temporarily expose input value. Use with caution.
get icebergConfigurationInput() {
return this._icebergConfiguration.internalValue;
}
}
exports.GlueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationOutputReference = GlueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationOutputReference;
_c = JSII_RTTI_SYMBOL_1;
GlueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationOutputReference[_c] = { fqn: "@cdktf/provider-aws.glueCatalogTableOptimizer.GlueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationOutputReference", version: "21.22.1" };
class GlueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationList extends cdktf.ComplexList {
/**
* @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, terraformAttribute, wrapsSet) {
super(terraformResource, terraformAttribute, wrapsSet);
this.terraformResource = terraformResource;
this.terraformAttribute = terraformAttribute;
this.wrapsSet = wrapsSet;
}
/**
* @param index the index of the item to return
*/
get(index) {
return new GlueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationOutputReference(this.terraformResource, this.terraformAttribute, index, this.wrapsSet);
}
}
exports.GlueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationList = GlueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationList;
_d = JSII_RTTI_SYMBOL_1;
GlueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationList[_d] = { fqn: "@cdktf/provider-aws.glueCatalogTableOptimizer.GlueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationList", version: "21.22.1" };
function glueCatalogTableOptimizerConfigurationRetentionConfigurationIcebergConfigurationToTerraform(struct) {
if (!cdktf.canInspect(struct) || cdktf.Tokenization.isResolvable(struct)) {
return struct;
}
if (cdktf.isComplexElement(struct)) {
throw new Error("A complex element was used as configuration, this is not supported: https://cdk.tf/complex-object-as-configuration");
}
return {
clean_expired_files: cdktf.booleanToTerraform(struct.cleanExpiredFiles),
number_of_snapshots_to_retain: cdktf.numberToTerraform(struct.numberOfSnapshotsToRetain),
run_rate_in_hours: cdktf.numberToTerraform(struct.runRateInHours),
snapshot_retention_period_in_days: cdktf.numberToTerraform(struct.snapshotRetentionPeriodInDays),
};
}
function glueCatalogTableOptimizerConfigurationRetentionConfigurationIcebergConfigurationToHclTerraform(struct) {
if (!cdktf.canInspect(struct) || cdktf.Tokenization.isResolvable(struct)) {
return struct;
}
if (cdktf.isComplexElement(struct)) {
throw new Error("A complex element was used as configuration, this is not supported: https://cdk.tf/complex-object-as-configuration");
}
const attrs = {
clean_expired_files: {
value: cdktf.booleanToHclTerraform(struct.cleanExpiredFiles),
isBlock: false,
type: "simple",
storageClassType: "boolean",
},
number_of_snapshots_to_retain: {
value: cdktf.numberToHclTerraform(struct.numberOfSnapshotsToRetain),
isBlock: false,
type: "simple",
storageClassType: "number",
},
run_rate_in_hours: {
value: cdktf.numberToHclTerraform(struct.runRateInHours),
isBlock: false,
type: "simple",
storageClassType: "number",
},
snapshot_retention_period_in_days: {
value: cdktf.numberToHclTerraform(struct.snapshotRetentionPeriodInDays),
isBlock: false,
type: "simple",
storageClassType: "number",
},
};
// remove undefined attributes
return Object.fromEntries(Object.entries(attrs).filter(([_, value]) => value !== undefined && value.value !== undefined));
}
class GlueCatalogTableOptimizerConfigurationRetentionConfigurationIcebergConfigurationOutputReference extends cdktf.ComplexObject {
/**
* @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, terraformAttribute, complexObjectIndex, complexObjectIsFromSet) {
super(terraformResource, terraformAttribute, complexObjectIsFromSet, complexObjectIndex);
this.isEmptyObject = false;
}
get internalValue() {
if (this.resolvableValue) {
return this.resolvableValue;
}
let hasAnyValues = this.isEmptyObject;
const internalValueResult = {};
if (this._cleanExpiredFiles !== undefined) {
hasAnyValues = true;
internalValueResult.cleanExpiredFiles = this._cleanExpiredFiles;
}
if (this._numberOfSnapshotsToRetain !== undefined) {
hasAnyValues = true;
internalValueResult.numberOfSnapshotsToRetain = this._numberOfSnapshotsToRetain;
}
if (this._runRateInHours !== undefined) {
hasAnyValues = true;
internalValueResult.runRateInHours = this._runRateInHours;
}
if (this._snapshotRetentionPeriodInDays !== undefined) {
hasAnyValues = true;
internalValueResult.snapshotRetentionPeriodInDays = this._snapshotRetentionPeriodInDays;
}
return hasAnyValues ? internalValueResult : undefined;
}
set internalValue(value) {
if (value === undefined) {
this.isEmptyObject = false;
this.resolvableValue = undefined;
this._cleanExpiredFiles = undefined;
this._numberOfSnapshotsToRetain = undefined;
this._runRateInHours = undefined;
this._snapshotRetentionPeriodInDays = undefined;
}
else if (cdktf.Tokenization.isResolvable(value)) {
this.isEmptyObject = false;
this.resolvableValue = value;
}
else {
this.isEmptyObject = Object.keys(value).length === 0;
this.resolvableValue = undefined;
this._cleanExpiredFiles = value.cleanExpiredFiles;
this._numberOfSnapshotsToRetain = value.numberOfSnapshotsToRetain;
this._runRateInHours = value.runRateInHours;
this._snapshotRetentionPeriodInDays = value.snapshotRetentionPeriodInDays;
}
}
get cleanExpiredFiles() {
return this.getBooleanAttribute('clean_expired_files');
}
set cleanExpiredFiles(value) {
this._cleanExpiredFiles = value;
}
resetCleanExpiredFiles() {
this._cleanExpiredFiles = undefined;
}
// Temporarily expose input value. Use with caution.
get cleanExpiredFilesInput() {
return this._cleanExpiredFiles;
}
get numberOfSnapshotsToRetain() {
return this.getNumberAttribute('number_of_snapshots_to_retain');
}
set numberOfSnapshotsToRetain(value) {
this._numberOfSnapshotsToRetain = value;
}
resetNumberOfSnapshotsToRetain() {
this._numberOfSnapshotsToRetain = undefined;
}
// Temporarily expose input value. Use with caution.
get numberOfSnapshotsToRetainInput() {
return this._numberOfSnapshotsToRetain;
}
get runRateInHours() {
return this.getNumberAttribute('run_rate_in_hours');
}
set runRateInHours(value) {
this._runRateInHours = value;
}
resetRunRateInHours() {
this._runRateInHours = undefined;
}
// Temporarily expose input value. Use with caution.
get runRateInHoursInput() {
return this._runRateInHours;
}
get snapshotRetentionPeriodInDays() {
return this.getNumberAttribute('snapshot_retention_period_in_days');
}
set snapshotRetentionPeriodInDays(value) {
this._snapshotRetentionPeriodInDays = value;
}
resetSnapshotRetentionPeriodInDays() {
this._snapshotRetentionPeriodInDays = undefined;
}
// Temporarily expose input value. Use with caution.
get snapshotRetentionPeriodInDaysInput() {
return this._snapshotRetentionPeriodInDays;
}
}
exports.GlueCatalogTableOptimizerConfigurationRetentionConfigurationIcebergConfigurationOutputReference = GlueCatalogTableOptimizerConfigurationRetentionConfigurationIcebergConfigurationOutputReference;
_e = JSII_RTTI_SYMBOL_1;
GlueCatalogTableOptimizerConfigurationRetentionConfigurationIcebergConfigurationOutputReference[_e] = { fqn: "@cdktf/provider-aws.glueCatalogTableOptimizer.GlueCatalogTableOptimizerConfigurationRetentionConfigurationIcebergConfigurationOutputReference", version: "21.22.1" };
class GlueCatalogTableOptimizerConfigurationRetentionConfigurationIcebergConfigurationList extends cdktf.ComplexList {
/**
* @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, terraformAttribute, wrapsSet) {
super(terraformResource, terraformAttribute, wrapsSet);
this.terraformResource = terraformResource;
this.terraformAttribute = terraformAttribute;
this.wrapsSet = wrapsSet;
}
/**
* @param index the index of the item to return
*/
get(index) {
return new GlueCatalogTableOptimizerConfigurationRetentionConfigurationIcebergConfigurationOutputReference(this.terraformResource, this.terraformAttribute, index, this.wrapsSet);
}
}
exports.GlueCatalogTableOptimizerConfigurationRetentionConfigurationIcebergConfigurationList = GlueCatalogTableOptimizerConfigurationRetentionConfigurationIcebergConfigurationList;
_f = JSII_RTTI_SYMBOL_1;
GlueCatalogTableOptimizerConfigurationRetentionConfigurationIcebergConfigurationList[_f] = { fqn: "@cdktf/provider-aws.glueCatalogTableOptimizer.GlueCatalogTableOptimizerConfigurationRetentionConfigurationIcebergConfigurationList", version: "21.22.1" };
function glueCatalogTableOptimizerConfigurationRetentionConfigurationToTerraform(struct) {
if (!cdktf.canInspect(struct) || cdktf.Tokenization.isResolvable(struct)) {
return struct;
}
if (cdktf.isComplexElement(struct)) {
throw new Error("A complex element was used as configuration, this is not supported: https://cdk.tf/complex-object-as-configuration");
}
return {
iceberg_configuration: cdktf.listMapper(glueCatalogTableOptimizerConfigurationRetentionConfigurationIcebergConfigurationToTerraform, true)(struct.icebergConfiguration),
};
}
function glueCatalogTableOptimizerConfigurationRetentionConfigurationToHclTerraform(struct) {
if (!cdktf.canInspect(struct) || cdktf.Tokenization.isResolvable(struct)) {
return struct;
}
if (cdktf.isComplexElement(struct)) {
throw new Error("A complex element was used as configuration, this is not supported: https://cdk.tf/complex-object-as-configuration");
}
const attrs = {
iceberg_configuration: {
value: cdktf.listMapperHcl(glueCatalogTableOptimizerConfigurationRetentionConfigurationIcebergConfigurationToHclTerraform, true)(struct.icebergConfiguration),
isBlock: true,
type: "list",
storageClassType: "GlueCatalogTableOptimizerConfigurationRetentionConfigurationIcebergConfigurationList",
},
};
// remove undefined attributes
return Object.fromEntries(Object.entries(attrs).filter(([_, value]) => value !== undefined && value.value !== undefined));
}
class GlueCatalogTableOptimizerConfigurationRetentionConfigurationOutputReference extends cdktf.ComplexObject {
/**
* @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, terraformAttribute, complexObjectIndex, complexObjectIsFromSet) {
super(terraformResource, terraformAttribute, complexObjectIsFromSet, complexObjectIndex);
this.isEmptyObject = false;
// iceberg_configuration - computed: false, optional: true, required: false
this._icebergConfiguration = new GlueCatalogTableOptimizerConfigurationRetentionConfigurationIcebergConfigurationList(this, "iceberg_configuration", false);
}
get internalValue() {
if (this.resolvableValue) {
return this.resolvableValue;
}
let hasAnyValues = this.isEmptyObject;
const internalValueResult = {};
if (this._icebergConfiguration?.internalValue !== undefined) {
hasAnyValues = true;
internalValueResult.icebergConfiguration = this._icebergConfiguration?.internalValue;
}
return hasAnyValues ? internalValueResult : undefined;
}
set internalValue(value) {
if (value === undefined) {
this.isEmptyObject = false;
this.resolvableValue = undefined;
this._icebergConfiguration.internalValue = undefined;
}
else if (cdktf.Tokenization.isResolvable(value)) {
this.isEmptyObject = false;
this.resolvableValue = value;
}
else {
this.isEmptyObject = Object.keys(value).length === 0;
this.resolvableValue = undefined;
this._icebergConfiguration.internalValue = value.icebergConfiguration;
}
}
get icebergConfiguration() {
return this._icebergConfiguration;
}
putIcebergConfiguration(value) {
this._icebergConfiguration.internalValue = value;
}
resetIcebergConfiguration() {
this._icebergConfiguration.internalValue = undefined;
}
// Temporarily expose input value. Use with caution.
get icebergConfigurationInput() {
return this._icebergConfiguration.internalValue;
}
}
exports.GlueCatalogTableOptimizerConfigurationRetentionConfigurationOutputReference = GlueCatalogTableOptimizerConfigurationRetentionConfigurationOutputReference;
_g = JSII_RTTI_SYMBOL_1;
GlueCatalogTableOptimizerConfigurationRetentionConfigurationOutputReference[_g] = { fqn: "@cdktf/provider-aws.glueCatalogTableOptimizer.GlueCatalogTableOptimizerConfigurationRetentionConfigurationOutputReference", version: "21.22.1" };
class GlueCatalogTableOptimizerConfigurationRetentionConfigurationList extends cdktf.ComplexList {
/**
* @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, terraformAttribute, wrapsSet) {
super(terraformResource, terraformAttribute, wrapsSet);
this.terraformResource = terraformResource;
this.terraformAttribute = terraformAttribute;
this.wrapsSet = wrapsSet;
}
/**
* @param index the index of the item to return
*/
get(index) {
return new GlueCatalogTableOptimizerConfigurationRetentionConfigurationOutputReference(this.terraformResource, this.terraformAttribute, index, this.wrapsSet);
}
}
exports.GlueCatalogTableOptimizerConfigurationRetentionConfigurationList = GlueCatalogTableOptimizerConfigurationRetentionConfigurationList;
_h = JSII_RTTI_SYMBOL_1;
GlueCatalogTableOptimizerConfigurationRetentionConfigurationList[_h] = { fqn: "@cdktf/provider-aws.glueCatalogTableOptimizer.GlueCatalogTableOptimizerConfigurationRetentionConfigurationList", version: "21.22.1" };
function glueCatalogTableOptimizerConfigurationToTerraform(struct) {
if (!cdktf.canInspect(struct) || cdktf.Tokenization.isResolvable(struct)) {
return struct;
}
if (cdktf.isComplexElement(struct)) {
throw new Error("A complex element was used as configuration, this is not supported: https://cdk.tf/complex-object-as-configuration");
}
return {
enabled: cdktf.booleanToTerraform(struct.enabled),
role_arn: cdktf.stringToTerraform(struct.roleArn),
orphan_file_deletion_configuration: cdktf.listMapper(glueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationToTerraform, true)(struct.orphanFileDeletionConfiguration),
retention_configuration: cdktf.listMapper(glueCatalogTableOptimizerConfigurationRetentionConfigurationToTerraform, true)(struct.retentionConfiguration),
};
}
function glueCatalogTableOptimizerConfigurationToHclTerraform(struct) {
if (!cdktf.canInspect(struct) || cdktf.Tokenization.isResolvable(struct)) {
return struct;
}
if (cdktf.isComplexElement(struct)) {
throw new Error("A complex element was used as configuration, this is not supported: https://cdk.tf/complex-object-as-configuration");
}
const attrs = {
enabled: {
value: cdktf.booleanToHclTerraform(struct.enabled),
isBlock: false,
type: "simple",
storageClassType: "boolean",
},
role_arn: {
value: cdktf.stringToHclTerraform(struct.roleArn),
isBlock: false,
type: "simple",
storageClassType: "string",
},
orphan_file_deletion_configuration: {
value: cdktf.listMapperHcl(glueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationToHclTerraform, true)(struct.orphanFileDeletionConfiguration),
isBlock: true,
type: "list",
storageClassType: "GlueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationList",
},
retention_configuration: {
value: cdktf.listMapperHcl(glueCatalogTableOptimizerConfigurationRetentionConfigurationToHclTerraform, true)(struct.retentionConfiguration),
isBlock: true,
type: "list",
storageClassType: "GlueCatalogTableOptimizerConfigurationRetentionConfigurationList",
},
};
// remove undefined attributes
return Object.fromEntries(Object.entries(attrs).filter(([_, value]) => value !== undefined && value.value !== undefined));
}
class GlueCatalogTableOptimizerConfigurationOutputReference extends cdktf.ComplexObject {
/**
* @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, terraformAttribute, complexObjectIndex, complexObjectIsFromSet) {
super(terraformResource, terraformAttribute, complexObjectIsFromSet, complexObjectIndex);
this.isEmptyObject = false;
// orphan_file_deletion_configuration - computed: false, optional: true, required: false
this._orphanFileDeletionConfiguration = new GlueCatalogTableOptimizerConfigurationOrphanFileDeletionConfigurationList(this, "orphan_file_deletion_configuration", false);
// retention_configuration - computed: false, optional: true, required: false
this._retentionConfiguration = new GlueCatalogTableOptimizerConfigurationRetentionConfigurationList(this, "retention_configuration", false);
}
get internalValue() {
if (this.resolvableValue) {
return this.resolvableValue;
}
let hasAnyValues = this.isEmptyObject;
const internalValueResult = {};
if (this._enabled !== undefined) {
hasAnyValues = true;
internalValueResult.enabled = this._enabled;
}
if (this._roleArn !== undefined) {
hasAnyValues = true;
internalValueResult.roleArn = this._roleArn;
}
if (this._orphanFileDeletionConfiguration?.internalValue !== undefined) {
hasAnyValues = true;
internalValueResult.orphanFileDeletionConfiguration = this._orphanFileDeletionConfiguration?.internalValue;
}
if (this._retentionConfiguration?.internalValue !== undefined) {
hasAnyValues = true;
internalValueResult.retentionConfiguration = this._retentionConfiguration?.internalValue;
}
return hasAnyValues ? internalValueResult : undefined;
}
set internalValue(value) {
if (value === undefined) {
this.isEmptyObject = false;
this.resolvableValue = undefined;
this._enabled = undefined;
this._roleArn = undefined;
this._orphanFileDeletionConfiguration.internalValue = undefined;
this._retentionConfiguration.internalValue = undefined;
}
else if (cdktf.Tokenization.isResolvable(value)) {
this.isEmptyObject = false;
this.resolvableValue = value;
}
else {
this.isEmptyObject = Object.keys(value).length === 0;
this.resolvableValue = undefined;
this._enabled = value.enabled;
this._roleArn = value.roleArn;
this._orphanFileDeletionConfiguration.internalValue = value.orphanFileDeletionConfiguration;
this._retentionConfiguration.internalValue = value.retentionConfiguration;
}
}
get enabled() {
return this.getBooleanAttribute('enabled');
}
set enabled(value) {
this._enabled = value;
}
// Temporarily expose input value. Use with caution.
get enabledInput() {
return this._enabled;
}
get roleArn() {
return this.getStringAttribute('role_arn');
}
set roleArn(value) {
this._roleArn = value;
}
// Temporarily expose input value. Use with caution.
get roleArnInput() {
return this._roleArn;
}
get orphanFileDeletionConfiguration() {
return this._orphanFileDeletionConfiguration;
}
putOrphanFileDeletionConfiguration(value) {
this._orphanFileDeletionConfiguration.internalValue = value;
}
resetOrphanFileDeletionConfiguration() {
this._orphanFileDeletionConfiguration.internalValue = undefined;
}
// Temporarily expose input value. Use with caution.
get orphanFileDeletionConfigurationInput() {
return this._orphanFileDeletionConfiguration.internalValue;
}
get retentionConfiguration() {
return this._retentionConfiguration;
}
putRetentionConfiguration(value) {
this._retentionConfiguration.internalValue = value;
}
resetRetentionConfiguration() {
this._retentionConfiguration.internalValue = undefined;
}
// Temporarily expose input value. Use with caution.
get retentionConfigurationInput() {
return this._retentionConfiguration.internalValue;
}
}
exports.GlueCatalogTableOptimizerConfigurationOutputReference = GlueCatalogTableOptimizerConfigurationOutputReference;
_j = JSII_RTTI_SYMBOL_1;
GlueCatalogTableOptimizerConfigurationOutputReference[_j] = { fqn: "@cdktf/provider-aws.glueCatalogTableOptimizer.GlueCatalogTableOptimizerConfigurationOutputReference", version: "21.22.1" };
class GlueCatalogTableOptimizerConfigurationList extends cdktf.ComplexList {
/**
* @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, terraformAttribute, wrapsSet) {
super(terraformResource, terraformAttribute, wrapsSet);
this.terraformResource = terraformResource;
this.terraformAttribute = terraformAttribute;
this.wrapsSet = wrapsSet;
}
/**
* @param index the index of the item to return
*/
get(index) {
return new GlueCatalogTableOptimizerConfigurationOutputReference(this.terraformResource, this.terraformAttribute, index, this.wrapsSet);
}
}
exports.GlueCatalogTableOptimizerConfigurationList = GlueCatalogTableOptimizerConfigurationList;
_k = JSII_RTTI_SYMBOL_1;
GlueCatalogTableOptimizerConfigurationList[_k] = { fqn: "@cdktf/provider-aws.glueCatalogTableOptimizer.GlueCatalogTableOptimizerConfigurationList", version: "21.22.1" };
/**
* Represents a {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/glue_catalog_table_optimizer aws_glue_catalog_table_optimizer}
*/
class GlueCatalogTableOptimizer extends cdktf.TerraformResource {
// ==============
// STATIC Methods
// ==============
/**
* Generates CDKTF code for importing a GlueCatalogTableOptimizer 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 GlueCatalogTableOptimizer to import
* @param importFromId The id of the existing GlueCatalogTableOptimizer that should be imported. Refer to the {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/glue_catalog_table_optimizer#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the GlueCatalogTableOptimizer to import is found
*/
static generateConfigForImport(scope, importToId, importFromId, provider) {
return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "aws_glue_catalog_table_optimizer", importId: importFromId, provider });
}
// ===========
// INITIALIZER
// ===========
/**
* Create a new {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/glue_catalog_table_optimizer aws_glue_catalog_table_optimizer} 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 GlueCatalogTableOptimizerConfig
*/
constructor(scope, id, config) {
super(scope, id, {
terraformResourceType: 'aws_glue_catalog_table_optimizer',
terraformGeneratorMetadata: {
providerName: 'aws',
providerVersion: '6.25.0',
providerVersionConstraint: '~> 6.0'
},
provider: config.provider,
dependsOn: config.dependsOn,
count: config.count,
lifecycle: config.lifecycle,
provisioners: config.provisioners,
connection: config.connection,
forEach: config.forEach
});
// configuration - computed: false, optional: true, required: false
this._configuration = new GlueCatalogTableOptimizerConfigurationList(this, "configuration", false);
this._catalogId = config.catalogId;
this._databaseName = config.databaseName;
this._region = config.region;
this._tableName = config.tableName;
this._type = config.type;
this._configuration.internalValue = config.configuration;
}
get catalogId() {
return this.getStringAttribute('catalog_id');
}
set catalogId(value) {
this._catalogId = value;
}
// Temporarily expose input value. Use with caution.
get catalogIdInput() {
return this._catalogId;
}
get databaseName() {
return this.getStringAttribute('database_name');
}
set databaseName(value) {
this._databaseName = value;
}
// Temporarily expose input value. Use with caution.
get databaseNameInput() {
return this._databaseName;
}
get region() {
return this.getStringAttribute('region');
}
set region(value) {
this._region = value;
}
resetRegion() {
this._region = undefined;
}
// Temporarily expose input value. Use with caution.
get regionInput() {
return this._region;
}
get tableName() {
return this.getStringAttribute('table_name');
}
set tableName(value) {
this._tableName = value;
}
// Temporarily expose input value. Use with caution.
get tableNameInput() {
return this._tableName;
}
get type() {
return this.getStringAttribute('type');
}
set type(value) {
this._type = value;
}
// Temporarily expose input value. Use with caution.
get typeInput() {
return this._type;
}
get configuration() {
return this._configuration;
}
putConfiguration(value) {
this._configuration.internalValue = value;
}
resetConfiguration() {
this._configuration.internalValue = undefined;
}
// Temporarily expose input value. Use with caution.
get configurationInput() {
return this._configuration.internalValue;
}
// =========
// SYNTHESIS
// =========
synthesizeAttributes() {
return {
catalog_id: cdktf.stringToTerraform(this._catalogId),
database_name: cdktf.stringToTerraform(this._databaseName),
region: cdktf.stringToTerraform(this._region),
table_name: cdktf.stringToTerraform(this._tableName),
type: cdktf.stringToTerraform(this._type),
configuration: cdktf.listMapper(glueCatalogTableOptimizerConfigurationToTerraform, true)(this._configuration.internalValue),
};
}
synthesizeHclAttributes() {
const attrs = {
catalog_id: {
value: cdktf.stringToHclTerraform(this._catalogId),
isBlock: false,
type: "simple",
storageClassType: "string",
},
database_name: {
value: cdktf.stringToHclTerraform(this._databaseName),
isBlock: false,
type: "simple",
storageClassType: "string",
},
region: {
value: cdktf.stringToHclTerraform(this._region),
isBlock: false,
type: "simple",
storageClassType: "string",
},
table_name: {
value: cdktf.stringToHclTerraform(this._tableName),
isBlock: false,
type: "simple",
storageClassType: "string",
},
type: {
value: cdktf.stringToHclTerraform(this._type),
isBlock: false,
type: "simple",
storageClassType: "string",
},
configuration: {
value: cdktf.listMapperHcl(glueCatalogTableOptimizerConfigurationToHclTerraform, true)(this._configuration.internalValue),
isBlock: true,
type: "list",
storageClassType: "GlueCatalogTableOptimizerConfigurationList",
},
};
// remove undefined attributes
return Object.fromEntries(Object.entries(attrs).filter(([_, value]) => value !== undefined && value.value !== undefined));
}
}
exports.GlueCatalogTableOptimizer = GlueCatalogTableOptimizer;
_l = JSII_RTTI_SYMBOL_1;
GlueCatalogTableOptimizer[_l] = { fqn: "@cdktf/provider-aws.glueCatalogTableOptimizer.GlueCatalogTableOptimizer", version: "21.22.1" };
// =================
// STATIC PROPERTIES
// =================
GlueCatalogTableOptimizer.tfResourceType = "aws_glue_catalog_table_optimizer";
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvZ2x1ZS1jYXRhbG9nLXRhYmxlLW9wdGltaXplci9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7O0FBMERBLG9OQVVDO0FBR0QsME5BNEJDO0FBdUlELDRLQVFDO0FBR0Qsa0xBZ0JDO0FBcUdELGtNQVdDO0FBR0Qsd01Ba0NDO0FBNkpELDBKQVFDO0FBR0QsZ0tBZ0JDO0FBeUdELDhHQVdDO0FBR0Qsb0hBa0NDOztBQWx1QkQsK0JBQStCO0FBaUQvQixTQUFnQixvR0FBb0csQ0FBQyxNQUFzSDtJQUN6TyxJQUFJLENBQUMsS0FBSyxDQUFDLFVBQVUsQ0FBQyxNQUFNLENBQUMsSUFBSSxLQUFLLENBQUMsWUFBWSxDQUFDLFlBQVksQ0FBQyxNQUFNLENBQUMsRUFBRSxDQUFDO1FBQUMsT0FBTyxNQUFNLENBQUM7SUFBQyxDQUFDO0lBQzVGLElBQUksS0FBSyxDQUFDLGdCQUFnQixDQUFDLE1BQU0sQ0FBQyxFQUFFLENBQUM7UUFDbkMsTUFBTSxJQUFJLEtBQUssQ0FBQyxvSEFBb0gsQ0FBQyxDQUFDO0lBQ3hJLENBQUM7SUFDRCxPQUFPO1FBQ0wsUUFBUSxFQUFFLEtBQUssQ0FBQyxpQkFBaUIsQ0FBQyxNQUFPLENBQUMsUUFBUSxDQUFDO1FBQ25ELG9DQUFvQyxFQUFFLEtBQUssQ0FBQyxpQkFBaUIsQ0FBQyxNQUFPLENBQUMsK0JBQStCLENBQUM7UUFDdEcsaUJBQWlCLEVBQUUsS0FBSyxDQUFDLGlCQUFpQixDQUFDLE1BQU8sQ0FBQyxjQUFjLENBQUM7S0FDbkUsQ0FBQTtBQUNILENBQUM7QUFHRCxTQUFnQix1R0FBdUcsQ0FBQyxNQUFzSDtJQUM1TyxJQUFJLENBQUMsS0FBSyxDQUFDLFVBQVUsQ0FBQyxNQUFNLENBQUMsSUFBSSxLQUFLLENBQUMsWUFBWSxDQUFDLFlBQVksQ0FBQyxNQUFNLENBQUMsRUFBRSxDQUFDO1FBQUMsT0FBTyxNQUFNLENBQUM7SUFBQyxDQUFDO0lBQzVGLElBQUksS0FBSyxDQUFDLGdCQUFnQixDQUFDLE1BQU0sQ0FBQyxFQUFFLENBQUM7UUFDbkMsTUFBTSxJQUFJLEtBQUssQ0FBQyxvSEFBb0gsQ0FBQyxDQUFDO0lBQ3hJLENBQUM7SUFDRCxNQUFNLEtBQUssR0FBRztRQUNaLFFBQVEsRUFBRTtZQUNSLEtBQUssRUFBRSxLQUFLLENBQUMsb0JBQW9CLENBQUMsTUFBTyxDQUFDLFFBQVEsQ0FBQztZQUNuRCxPQUFPLEVBQUUsS0FBSztZQUNkLElBQUksRUFBRSxRQUFRO1lBQ2QsZ0JBQWdCLEVBQUUsUUFBUTtTQUMzQjtRQUNELG9DQUFvQyxFQUFFO1lBQ3BDLEtBQUssRUFBRSxLQUFLLENBQUMsb0JBQW9CLENBQUMsTUFBTyxDQUFDLCtCQUErQixDQUFDO1lBQzFFLE9BQU8sRUFBRSxLQUFLO1lBQ2QsSUFBSSxFQUFFLFFBQVE7WUFDZCxnQkFBZ0IsRUFBRSxRQUFRO1NBQzNCO1FBQ0QsaUJBQWlCLEVBQUU7WUFDakIsS0FBSyxFQUFFLEtBQUssQ0FBQyxvQkFBb0IsQ0FBQyxNQUFPLENBQUMsY0FBYyxDQUFDO1lBQ3pELE9BQU8sRUFBRSxLQUFLO1lBQ2QsSUFBSSxFQUFFLFFBQVE7WUFDZCxnQkFBZ0IsRUFBRSxRQUFRO1NBQzNCO0tBQ0YsQ0FBQztJQUVGLDhCQUE4QjtJQUM5QixPQUFPLE1BQU0sQ0FBQyxXQUFXLENBQUMsTUFBTSxDQUFDLE9BQU8sQ0FBQyxLQUFLLENBQUMsQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLENBQUMsRUFBRSxLQUFLLENBQUMsRUFBRSxFQUFFLENBQUMsS0FBSyxLQUFLLFNBQVMsSUFBSSxLQUFLLENBQUMsS0FBSyxLQUFLLFNBQVMsQ0FBQyxDQUFDLENBQUM7QUFDNUgsQ0FBQztBQUVELE1BQWEsd0dBQXlHLFNBQVEsS0FBSyxDQUFDLGFBQWE7SUFJL0k7Ozs7O01BS0U7SUFDRixZQUFtQixpQkFBNkMsRUFBRSxrQkFBMEIsRUFBRSxrQkFBMEIsRUFBRSxzQkFBK0I7UUFDdkosS0FBSyxDQUFDLGlCQUFpQixFQUFFLGtCQUFrQixFQUFFLHNCQUFzQixFQUFFLGtCQUFrQixDQUFDLENBQUM7UUFWbkYsa0JBQWEsR0FBRyxLQUFLLENBQUM7SUFXOUIsQ0FBQztJQUVELElBQVcsYUFBYTtRQUN0QixJQUFJLElBQUksQ0FBQyxlQUFlLEVBQUUsQ0FBQztZQUN6QixPQUFPLElBQUksQ0FBQyxlQUFlLENBQUM7UUFDOUIsQ0FBQztRQUNELElBQUksWUFBWSxHQUFHLElBQUksQ0FBQyxhQUFhLENBQUM7UUFDdEMsTUFBTSxtQkFBbUIsR0FBUSxFQUFFLENBQUM7UUFDcEMsSUFBSSxJQUFJLENBQUMsU0FBUyxLQUFLLFNBQVMsRUFBRSxDQUFDO1lBQ2pDLFlBQVksR0FBRyxJQUFJLENBQUM7WUFDcEIsbUJBQW1CLENBQUMsUUFBUSxHQUFHLElBQUksQ0FBQyxTQUFTLENBQUM7UUFDaEQsQ0FBQztRQUNELElBQUksSUFBSSxDQUFDLGdDQUFnQyxLQUFLLFNBQVMsRUFBRSxDQUFDO1lBQ3hELFlBQVksR0FBRyxJQUFJLENBQUM7WUFDcEIsbUJBQW1CLENBQUMsK0JBQStCLEdBQUcsSUFBSSxDQUFDLGdDQUFnQyxDQUFDO1FBQzlGLENBQUM7UUFDRCxJQUFJLElBQUksQ0FBQyxlQUFlLEtBQUssU0FBUyxFQUFFLENBQUM7WUFDdkMsWUFBWSxHQUFHLElBQUksQ0FBQztZQUNwQixtQkFBbUIsQ0FBQyxjQUFjLEdBQUcsSUFBSSxDQUFDLGVBQWUsQ0FBQztRQUM1RCxDQUFDO1FBQ0QsT0FBTyxZQUFZLENBQUMsQ0FBQyxDQUFDLG1CQUFtQixDQUFDLENBQUMsQ0FBQyxTQUFTLENBQUM7