import * as cdk from "../../core"; import * as constructs from "constructs"; import * as cfn_parse from "../../core/lib/helpers-internal"; /** * Creates a new analysis template. * * @cloudformationResource AWS::CleanRooms::AnalysisTemplate * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-analysistemplate.html */ export declare class CfnAnalysisTemplate extends cdk.CfnResource implements cdk.IInspectable, cdk.ITaggableV2 { /** * The CloudFormation resource type name for this resource class. */ static readonly CFN_RESOURCE_TYPE_NAME: string; /** * Build a CfnAnalysisTemplate from CloudFormation properties * * A factory method that creates a new instance of this class from an object * containing the CloudFormation properties of this resource. * Used in the @aws-cdk/cloudformation-include module. * * @internal */ static _fromCloudFormation(scope: constructs.Construct, id: string, resourceAttributes: any, options: cfn_parse.FromCloudFormationOptions): CfnAnalysisTemplate; /** * Returns the identifier for the analysis template. * * Example: `a1b2c3d4-5678-90ab-cdef-EXAMPLE2222` * * @cloudformationAttribute AnalysisTemplateIdentifier */ readonly attrAnalysisTemplateIdentifier: string; /** * Returns the Amazon Resource Name (ARN) of the analysis template. * * Example: `arn:aws:cleanrooms:us-east-1:111122223333:membership/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111/analysistemplates/a1b2c3d4-5678-90ab-cdef-EXAMPLE2222` * * @cloudformationAttribute Arn */ readonly attrArn: string; /** * Returns the unique ARN for the analysis template’s associated collaboration. * * Example: `arn:aws:cleanrooms:us-east-1:111122223333:collaboration/a1b2c3d4-5678-90ab-cdef-EXAMPLE33333` * * @cloudformationAttribute CollaborationArn */ readonly attrCollaborationArn: string; /** * Returns the unique ID for the associated collaboration of the analysis template. * * Example: `a1b2c3d4-5678-90ab-cdef-EXAMPLE33333` * * @cloudformationAttribute CollaborationIdentifier */ readonly attrCollaborationIdentifier: string; /** * Returns the Amazon Resource Name (ARN) of the member who created the analysis template. * * Example: `arn:aws:cleanrooms:us-east-1:111122223333:membership/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111` * * @cloudformationAttribute MembershipArn */ readonly attrMembershipArn: string; /** * @cloudformationAttribute Schema */ readonly attrSchema: cdk.IResolvable; /** * @cloudformationAttribute Schema.ReferencedTables */ readonly attrSchemaReferencedTables: Array; /** * The parameters of the analysis template. */ analysisParameters?: Array | cdk.IResolvable; /** * Tag Manager which manages the tags for this resource */ readonly cdkTagManager: cdk.TagManager; /** * The description of the analysis template. */ description?: string; /** * The format of the analysis template. */ format: string; /** * The identifier for a membership resource. */ membershipIdentifier: string; /** * The name of the analysis template. */ name: string; /** * The entire schema object. */ schema?: CfnAnalysisTemplate.AnalysisSchemaProperty | cdk.IResolvable; /** * The source of the analysis template. */ source: CfnAnalysisTemplate.AnalysisSourceProperty | cdk.IResolvable; /** * The source metadata for the analysis template. */ sourceMetadata?: CfnAnalysisTemplate.AnalysisSourceMetadataProperty | cdk.IResolvable; /** * An optional label that you can assign to a resource when you create it. */ tags?: Array; /** * @param scope Scope in which this resource is defined * @param id Construct identifier for this resource (unique in its scope) * @param props Resource properties */ constructor(scope: constructs.Construct, id: string, props: CfnAnalysisTemplateProps); protected get cfnProperties(): Record; /** * Examines the CloudFormation resource and discloses attributes * * @param inspector tree inspector to collect and process attributes */ inspect(inspector: cdk.TreeInspector): void; protected renderProperties(props: Record): Record; } export declare namespace CfnAnalysisTemplate { /** * Optional. * * The member who can query can provide this placeholder for a literal data value in an analysis template. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysisparameter.html */ interface AnalysisParameterProperty { /** * Optional. * * The default value that is applied in the analysis template. The member who can query can override this value in the query editor. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysisparameter.html#cfn-cleanrooms-analysistemplate-analysisparameter-defaultvalue */ readonly defaultValue?: string; /** * The name of the parameter. * * The name must use only alphanumeric, underscore (_), or hyphen (-) characters but cannot start or end with a hyphen. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysisparameter.html#cfn-cleanrooms-analysistemplate-analysisparameter-name */ readonly name: string; /** * The type of parameter. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysisparameter.html#cfn-cleanrooms-analysistemplate-analysisparameter-type */ readonly type: string; } /** * The structure that defines the body of the analysis template. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysissource.html */ interface AnalysisSourceProperty { /** * The artifacts of the analysis source. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysissource.html#cfn-cleanrooms-analysistemplate-analysissource-artifacts */ readonly artifacts?: CfnAnalysisTemplate.AnalysisTemplateArtifactsProperty | cdk.IResolvable; /** * The query text. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysissource.html#cfn-cleanrooms-analysistemplate-analysissource-text */ readonly text?: string; } /** * The analysis template artifacts. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysistemplateartifacts.html */ interface AnalysisTemplateArtifactsProperty { /** * Additional artifacts for the analysis template. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysistemplateartifacts.html#cfn-cleanrooms-analysistemplate-analysistemplateartifacts-additionalartifacts */ readonly additionalArtifacts?: Array | cdk.IResolvable; /** * The entry point for the analysis template artifacts. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysistemplateartifacts.html#cfn-cleanrooms-analysistemplate-analysistemplateartifacts-entrypoint */ readonly entryPoint: CfnAnalysisTemplate.AnalysisTemplateArtifactProperty | cdk.IResolvable; /** * The role ARN for the analysis template artifacts. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysistemplateartifacts.html#cfn-cleanrooms-analysistemplate-analysistemplateartifacts-rolearn */ readonly roleArn: string; } /** * The analysis template artifact. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysistemplateartifact.html */ interface AnalysisTemplateArtifactProperty { /** * The artifact location. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysistemplateartifact.html#cfn-cleanrooms-analysistemplate-analysistemplateartifact-location */ readonly location: cdk.IResolvable | CfnAnalysisTemplate.S3LocationProperty; } /** * The S3 location. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-s3location.html */ interface S3LocationProperty { /** * The bucket name. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-s3location.html#cfn-cleanrooms-analysistemplate-s3location-bucket */ readonly bucket: string; /** * The object key. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-s3location.html#cfn-cleanrooms-analysistemplate-s3location-key */ readonly key: string; } /** * A relation within an analysis. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysisschema.html */ interface AnalysisSchemaProperty { /** * The tables referenced in the analysis schema. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysisschema.html#cfn-cleanrooms-analysistemplate-analysisschema-referencedtables */ readonly referencedTables: Array; } /** * The analysis source metadata. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysissourcemetadata.html */ interface AnalysisSourceMetadataProperty { /** * The artifacts of the analysis source metadata. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysissourcemetadata.html#cfn-cleanrooms-analysistemplate-analysissourcemetadata-artifacts */ readonly artifacts: CfnAnalysisTemplate.AnalysisTemplateArtifactMetadataProperty | cdk.IResolvable; } /** * The analysis template artifact metadata. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysistemplateartifactmetadata.html */ interface AnalysisTemplateArtifactMetadataProperty { /** * Additional artifact hashes for the analysis template. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysistemplateartifactmetadata.html#cfn-cleanrooms-analysistemplate-analysistemplateartifactmetadata-additionalartifacthashes */ readonly additionalArtifactHashes?: Array | cdk.IResolvable; /** * The hash of the entry point for the analysis template artifact metadata. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysistemplateartifactmetadata.html#cfn-cleanrooms-analysistemplate-analysistemplateartifactmetadata-entrypointhash */ readonly entryPointHash: CfnAnalysisTemplate.HashProperty | cdk.IResolvable; } /** * Hash. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-hash.html */ interface HashProperty { /** * The SHA-256 hash value. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-hash.html#cfn-cleanrooms-analysistemplate-hash-sha256 */ readonly sha256?: string; } } /** * Properties for defining a `CfnAnalysisTemplate` * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-analysistemplate.html */ export interface CfnAnalysisTemplateProps { /** * The parameters of the analysis template. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-analysistemplate.html#cfn-cleanrooms-analysistemplate-analysisparameters */ readonly analysisParameters?: Array | cdk.IResolvable; /** * The description of the analysis template. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-analysistemplate.html#cfn-cleanrooms-analysistemplate-description */ readonly description?: string; /** * The format of the analysis template. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-analysistemplate.html#cfn-cleanrooms-analysistemplate-format */ readonly format: string; /** * The identifier for a membership resource. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-analysistemplate.html#cfn-cleanrooms-analysistemplate-membershipidentifier */ readonly membershipIdentifier: string; /** * The name of the analysis template. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-analysistemplate.html#cfn-cleanrooms-analysistemplate-name */ readonly name: string; /** * The entire schema object. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-analysistemplate.html#cfn-cleanrooms-analysistemplate-schema */ readonly schema?: CfnAnalysisTemplate.AnalysisSchemaProperty | cdk.IResolvable; /** * The source of the analysis template. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-analysistemplate.html#cfn-cleanrooms-analysistemplate-source */ readonly source: CfnAnalysisTemplate.AnalysisSourceProperty | cdk.IResolvable; /** * The source metadata for the analysis template. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-analysistemplate.html#cfn-cleanrooms-analysistemplate-sourcemetadata */ readonly sourceMetadata?: CfnAnalysisTemplate.AnalysisSourceMetadataProperty | cdk.IResolvable; /** * An optional label that you can assign to a resource when you create it. * * Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-analysistemplate.html#cfn-cleanrooms-analysistemplate-tags */ readonly tags?: Array; } /** * Creates a new collaboration. * * @cloudformationResource AWS::CleanRooms::Collaboration * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-collaboration.html */ export declare class CfnCollaboration extends cdk.CfnResource implements cdk.IInspectable, cdk.ITaggableV2 { /** * The CloudFormation resource type name for this resource class. */ static readonly CFN_RESOURCE_TYPE_NAME: string; /** * Build a CfnCollaboration from CloudFormation properties * * A factory method that creates a new instance of this class from an object * containing the CloudFormation properties of this resource. * Used in the @aws-cdk/cloudformation-include module. * * @internal */ static _fromCloudFormation(scope: constructs.Construct, id: string, resourceAttributes: any, options: cfn_parse.FromCloudFormationOptions): CfnCollaboration; /** * Returns the Amazon Resource Name (ARN) of the specified collaboration. * * Example: `arn:aws:cleanrooms:us-east-1:111122223333:collaboration/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111` * * @cloudformationAttribute Arn */ readonly attrArn: string; /** * Returns the unique identifier of the specified collaboration. * * Example: `a1b2c3d4-5678-90ab-cdef-EXAMPLE11111` * * @cloudformationAttribute CollaborationIdentifier */ readonly attrCollaborationIdentifier: string; /** * The analytics engine for the collaboration. */ analyticsEngine?: string; /** * Tag Manager which manages the tags for this resource */ readonly cdkTagManager: cdk.TagManager; /** * A display name of the collaboration creator. */ creatorDisplayName: string; /** * The abilities granted to the collaboration creator. */ creatorMemberAbilities?: Array; /** * The ML member abilities for a collaboration member. */ creatorMlMemberAbilities?: cdk.IResolvable | CfnCollaboration.MLMemberAbilitiesProperty; /** * An object representing the collaboration member's payment responsibilities set by the collaboration creator. */ creatorPaymentConfiguration?: cdk.IResolvable | CfnCollaboration.PaymentConfigurationProperty; /** * The settings for client-side encryption for cryptographic computing. */ dataEncryptionMetadata?: CfnCollaboration.DataEncryptionMetadataProperty | cdk.IResolvable; /** * A description of the collaboration provided by the collaboration owner. */ description: string; /** * An indicator as to whether job logging has been enabled or disabled for the collaboration. */ jobLogStatus?: string; /** * A list of initial members, not including the creator. */ members?: Array | cdk.IResolvable; /** * A human-readable identifier provided by the collaboration owner. */ name: string; /** * An indicator as to whether query logging has been enabled or disabled for the collaboration. */ queryLogStatus: string; /** * An optional label that you can assign to a resource when you create it. */ tags?: Array; /** * @param scope Scope in which this resource is defined * @param id Construct identifier for this resource (unique in its scope) * @param props Resource properties */ constructor(scope: constructs.Construct, id: string, props: CfnCollaborationProps); protected get cfnProperties(): Record; /** * Examines the CloudFormation resource and discloses attributes * * @param inspector tree inspector to collect and process attributes */ inspect(inspector: cdk.TreeInspector): void; protected renderProperties(props: Record): Record; } export declare namespace CfnCollaboration { /** * The settings for client-side encryption for cryptographic computing. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-dataencryptionmetadata.html */ interface DataEncryptionMetadataProperty { /** * Indicates whether encrypted tables can contain cleartext data ( `TRUE` ) or are to cryptographically process every column ( `FALSE` ). * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-dataencryptionmetadata.html#cfn-cleanrooms-collaboration-dataencryptionmetadata-allowcleartext */ readonly allowCleartext: boolean | cdk.IResolvable; /** * Indicates whether Fingerprint columns can contain duplicate entries ( `TRUE` ) or are to contain only non-repeated values ( `FALSE` ). * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-dataencryptionmetadata.html#cfn-cleanrooms-collaboration-dataencryptionmetadata-allowduplicates */ readonly allowDuplicates: boolean | cdk.IResolvable; /** * Indicates whether Fingerprint columns can be joined on any other Fingerprint column with a different name ( `TRUE` ) or can only be joined on Fingerprint columns of the same name ( `FALSE` ). * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-dataencryptionmetadata.html#cfn-cleanrooms-collaboration-dataencryptionmetadata-allowjoinsoncolumnswithdifferentnames */ readonly allowJoinsOnColumnsWithDifferentNames: boolean | cdk.IResolvable; /** * Indicates whether NULL values are to be copied as NULL to encrypted tables ( `TRUE` ) or cryptographically processed ( `FALSE` ). * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-dataencryptionmetadata.html#cfn-cleanrooms-collaboration-dataencryptionmetadata-preservenulls */ readonly preserveNulls: boolean | cdk.IResolvable; } /** * Basic metadata used to construct a new member. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-memberspecification.html */ interface MemberSpecificationProperty { /** * The identifier used to reference members of the collaboration. * * Currently only supports AWS account ID. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-memberspecification.html#cfn-cleanrooms-collaboration-memberspecification-accountid */ readonly accountId: string; /** * The member's display name. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-memberspecification.html#cfn-cleanrooms-collaboration-memberspecification-displayname */ readonly displayName: string; /** * The abilities granted to the collaboration member. * * *Allowed Values* : `CAN_QUERY` | `CAN_RECEIVE_RESULTS` * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-memberspecification.html#cfn-cleanrooms-collaboration-memberspecification-memberabilities */ readonly memberAbilities?: Array; /** * The ML abilities granted to the collaboration member. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-memberspecification.html#cfn-cleanrooms-collaboration-memberspecification-mlmemberabilities */ readonly mlMemberAbilities?: cdk.IResolvable | CfnCollaboration.MLMemberAbilitiesProperty; /** * The collaboration member's payment responsibilities set by the collaboration creator. * * If the collaboration creator hasn't specified anyone as the member paying for query compute costs, then the member who can query is the default payer. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-memberspecification.html#cfn-cleanrooms-collaboration-memberspecification-paymentconfiguration */ readonly paymentConfiguration?: cdk.IResolvable | CfnCollaboration.PaymentConfigurationProperty; } /** * The ML member abilities for a collaboration member. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-mlmemberabilities.html */ interface MLMemberAbilitiesProperty { /** * The custom ML member abilities for a collaboration member. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-mlmemberabilities.html#cfn-cleanrooms-collaboration-mlmemberabilities-custommlmemberabilities */ readonly customMlMemberAbilities: Array; } /** * An object representing the collaboration member's payment responsibilities set by the collaboration creator. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-paymentconfiguration.html */ interface PaymentConfigurationProperty { /** * The compute configuration for the job. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-paymentconfiguration.html#cfn-cleanrooms-collaboration-paymentconfiguration-jobcompute */ readonly jobCompute?: cdk.IResolvable | CfnCollaboration.JobComputePaymentConfigProperty; /** * An object representing the collaboration member's machine learning payment responsibilities set by the collaboration creator. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-paymentconfiguration.html#cfn-cleanrooms-collaboration-paymentconfiguration-machinelearning */ readonly machineLearning?: cdk.IResolvable | CfnCollaboration.MLPaymentConfigProperty; /** * The collaboration member's payment responsibilities set by the collaboration creator for query compute costs. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-paymentconfiguration.html#cfn-cleanrooms-collaboration-paymentconfiguration-querycompute */ readonly queryCompute: cdk.IResolvable | CfnCollaboration.QueryComputePaymentConfigProperty; } /** * An object representing the collaboration member's payment responsibilities set by the collaboration creator for query and job compute costs. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-jobcomputepaymentconfig.html */ interface JobComputePaymentConfigProperty { /** * Indicates whether the collaboration creator has configured the collaboration member to pay for query and job compute costs ( `TRUE` ) or has not configured the collaboration member to pay for query and job compute costs ( `FALSE` ). * * Exactly one member can be configured to pay for query and job compute costs. An error is returned if the collaboration creator sets a `TRUE` value for more than one member in the collaboration. * * An error is returned if the collaboration creator sets a `FALSE` value for the member who can run queries and jobs. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-jobcomputepaymentconfig.html#cfn-cleanrooms-collaboration-jobcomputepaymentconfig-isresponsible */ readonly isResponsible: boolean | cdk.IResolvable; } /** * An object representing the collaboration member's payment responsibilities set by the collaboration creator for query compute costs. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-querycomputepaymentconfig.html */ interface QueryComputePaymentConfigProperty { /** * Indicates whether the collaboration creator has configured the collaboration member to pay for query compute costs ( `TRUE` ) or has not configured the collaboration member to pay for query compute costs ( `FALSE` ). * * Exactly one member can be configured to pay for query compute costs. An error is returned if the collaboration creator sets a `TRUE` value for more than one member in the collaboration. * * If the collaboration creator hasn't specified anyone as the member paying for query compute costs, then the member who can query is the default payer. An error is returned if the collaboration creator sets a `FALSE` value for the member who can query. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-querycomputepaymentconfig.html#cfn-cleanrooms-collaboration-querycomputepaymentconfig-isresponsible */ readonly isResponsible: boolean | cdk.IResolvable; } /** * An object representing the collaboration member's machine learning payment responsibilities set by the collaboration creator. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-mlpaymentconfig.html */ interface MLPaymentConfigProperty { /** * The payment responsibilities accepted by the member for model inference. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-mlpaymentconfig.html#cfn-cleanrooms-collaboration-mlpaymentconfig-modelinference */ readonly modelInference?: cdk.IResolvable | CfnCollaboration.ModelInferencePaymentConfigProperty; /** * The payment responsibilities accepted by the member for model training. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-mlpaymentconfig.html#cfn-cleanrooms-collaboration-mlpaymentconfig-modeltraining */ readonly modelTraining?: cdk.IResolvable | CfnCollaboration.ModelTrainingPaymentConfigProperty; } /** * An object representing the collaboration member's model training payment responsibilities set by the collaboration creator. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-modeltrainingpaymentconfig.html */ interface ModelTrainingPaymentConfigProperty { /** * Indicates whether the collaboration creator has configured the collaboration member to pay for model training costs ( `TRUE` ) or has not configured the collaboration member to pay for model training costs ( `FALSE` ). * * Exactly one member can be configured to pay for model training costs. An error is returned if the collaboration creator sets a `TRUE` value for more than one member in the collaboration. * * If the collaboration creator hasn't specified anyone as the member paying for model training costs, then the member who can query is the default payer. An error is returned if the collaboration creator sets a `FALSE` value for the member who can query. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-modeltrainingpaymentconfig.html#cfn-cleanrooms-collaboration-modeltrainingpaymentconfig-isresponsible */ readonly isResponsible: boolean | cdk.IResolvable; } /** * An object representing the collaboration member's model inference payment responsibilities set by the collaboration creator. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-modelinferencepaymentconfig.html */ interface ModelInferencePaymentConfigProperty { /** * Indicates whether the collaboration creator has configured the collaboration member to pay for model inference costs ( `TRUE` ) or has not configured the collaboration member to pay for model inference costs ( `FALSE` ). * * Exactly one member can be configured to pay for model inference costs. An error is returned if the collaboration creator sets a `TRUE` value for more than one member in the collaboration. * * If the collaboration creator hasn't specified anyone as the member paying for model inference costs, then the member who can query is the default payer. An error is returned if the collaboration creator sets a `FALSE` value for the member who can query. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-modelinferencepaymentconfig.html#cfn-cleanrooms-collaboration-modelinferencepaymentconfig-isresponsible */ readonly isResponsible: boolean | cdk.IResolvable; } } /** * Properties for defining a `CfnCollaboration` * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-collaboration.html */ export interface CfnCollaborationProps { /** * The analytics engine for the collaboration. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-collaboration.html#cfn-cleanrooms-collaboration-analyticsengine */ readonly analyticsEngine?: string; /** * A display name of the collaboration creator. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-collaboration.html#cfn-cleanrooms-collaboration-creatordisplayname */ readonly creatorDisplayName: string; /** * The abilities granted to the collaboration creator. * * *Allowed values* `CAN_QUERY` | `CAN_RECEIVE_RESULTS` | `CAN_RUN_JOB` * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-collaboration.html#cfn-cleanrooms-collaboration-creatormemberabilities */ readonly creatorMemberAbilities?: Array; /** * The ML member abilities for a collaboration member. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-collaboration.html#cfn-cleanrooms-collaboration-creatormlmemberabilities */ readonly creatorMlMemberAbilities?: cdk.IResolvable | CfnCollaboration.MLMemberAbilitiesProperty; /** * An object representing the collaboration member's payment responsibilities set by the collaboration creator. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-collaboration.html#cfn-cleanrooms-collaboration-creatorpaymentconfiguration */ readonly creatorPaymentConfiguration?: cdk.IResolvable | CfnCollaboration.PaymentConfigurationProperty; /** * The settings for client-side encryption for cryptographic computing. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-collaboration.html#cfn-cleanrooms-collaboration-dataencryptionmetadata */ readonly dataEncryptionMetadata?: CfnCollaboration.DataEncryptionMetadataProperty | cdk.IResolvable; /** * A description of the collaboration provided by the collaboration owner. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-collaboration.html#cfn-cleanrooms-collaboration-description */ readonly description: string; /** * An indicator as to whether job logging has been enabled or disabled for the collaboration. * * When `ENABLED` , AWS Clean Rooms logs details about jobs run within this collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value is `DISABLED` . * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-collaboration.html#cfn-cleanrooms-collaboration-joblogstatus */ readonly jobLogStatus?: string; /** * A list of initial members, not including the creator. * * This list is immutable. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-collaboration.html#cfn-cleanrooms-collaboration-members */ readonly members?: Array | cdk.IResolvable; /** * A human-readable identifier provided by the collaboration owner. * * Display names are not unique. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-collaboration.html#cfn-cleanrooms-collaboration-name */ readonly name: string; /** * An indicator as to whether query logging has been enabled or disabled for the collaboration. * * When `ENABLED` , AWS Clean Rooms logs details about queries run within this collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value is `DISABLED` . * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-collaboration.html#cfn-cleanrooms-collaboration-querylogstatus */ readonly queryLogStatus: string; /** * An optional label that you can assign to a resource when you create it. * * Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-collaboration.html#cfn-cleanrooms-collaboration-tags */ readonly tags?: Array; } /** * Creates a new configured table resource. * * @cloudformationResource AWS::CleanRooms::ConfiguredTable * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-configuredtable.html */ export declare class CfnConfiguredTable extends cdk.CfnResource implements cdk.IInspectable, cdk.ITaggableV2 { /** * The CloudFormation resource type name for this resource class. */ static readonly CFN_RESOURCE_TYPE_NAME: string; /** * Build a CfnConfiguredTable from CloudFormation properties * * A factory method that creates a new instance of this class from an object * containing the CloudFormation properties of this resource. * Used in the @aws-cdk/cloudformation-include module. * * @internal */ static _fromCloudFormation(scope: constructs.Construct, id: string, resourceAttributes: any, options: cfn_parse.FromCloudFormationOptions): CfnConfiguredTable; /** * Returns the Amazon Resource Name (ARN) of the specified configured table. * * Example: `arn:aws:cleanrooms:us-east-1:111122223333:configuredtable/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111` * * @cloudformationAttribute Arn */ readonly attrArn: string; /** * Returns the unique identifier of the specified configured table. * * Example: `a1b2c3d4-5678-90ab-cdef-EXAMPLE33333` * * @cloudformationAttribute ConfiguredTableIdentifier */ readonly attrConfiguredTableIdentifier: string; /** * The columns within the underlying AWS Glue table that can be utilized within collaborations. */ allowedColumns: Array; /** * The analysis method for the configured table. */ analysisMethod: string; /** * The analysis rule that was created for the configured table. */ analysisRules?: Array | cdk.IResolvable; /** * Tag Manager which manages the tags for this resource */ readonly cdkTagManager: cdk.TagManager; /** * A description for the configured table. */ description?: string; /** * A name for the configured table. */ name: string; /** * The selected analysis methods for the configured table. */ selectedAnalysisMethods?: Array; /** * The table that this configured table represents. */ tableReference: cdk.IResolvable | CfnConfiguredTable.TableReferenceProperty; /** * An optional label that you can assign to a resource when you create it. */ tags?: Array; /** * @param scope Scope in which this resource is defined * @param id Construct identifier for this resource (unique in its scope) * @param props Resource properties */ constructor(scope: constructs.Construct, id: string, props: CfnConfiguredTableProps); protected get cfnProperties(): Record; /** * Examines the CloudFormation resource and discloses attributes * * @param inspector tree inspector to collect and process attributes */ inspect(inspector: cdk.TreeInspector): void; protected renderProperties(props: Record): Record; } export declare namespace CfnConfiguredTable { /** * A pointer to the dataset that underlies this table. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-tablereference.html */ interface TableReferenceProperty { /** * If present, a reference to the Athena table referred to by this table reference. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-tablereference.html#cfn-cleanrooms-configuredtable-tablereference-athena */ readonly athena?: CfnConfiguredTable.AthenaTableReferenceProperty | cdk.IResolvable; /** * If present, a reference to the AWS Glue table referred to by this table reference. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-tablereference.html#cfn-cleanrooms-configuredtable-tablereference-glue */ readonly glue?: CfnConfiguredTable.GlueTableReferenceProperty | cdk.IResolvable; /** * If present, a reference to the Snowflake table referred to by this table reference. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-tablereference.html#cfn-cleanrooms-configuredtable-tablereference-snowflake */ readonly snowflake?: cdk.IResolvable | CfnConfiguredTable.SnowflakeTableReferenceProperty; } /** * A reference to a table within an AWS Glue data catalog. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-gluetablereference.html */ interface GlueTableReferenceProperty { /** * The name of the database the AWS Glue table belongs to. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-gluetablereference.html#cfn-cleanrooms-configuredtable-gluetablereference-databasename */ readonly databaseName: string; /** * The name of the AWS Glue table. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-gluetablereference.html#cfn-cleanrooms-configuredtable-gluetablereference-tablename */ readonly tableName: string; } /** * A reference to a table within Snowflake. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-snowflaketablereference.html */ interface SnowflakeTableReferenceProperty { /** * The account identifier for the Snowflake table reference. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-snowflaketablereference.html#cfn-cleanrooms-configuredtable-snowflaketablereference-accountidentifier */ readonly accountIdentifier: string; /** * The name of the database the Snowflake table belongs to. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-snowflaketablereference.html#cfn-cleanrooms-configuredtable-snowflaketablereference-databasename */ readonly databaseName: string; /** * The schema name of the Snowflake table reference. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-snowflaketablereference.html#cfn-cleanrooms-configuredtable-snowflaketablereference-schemaname */ readonly schemaName: string; /** * The secret ARN of the Snowflake table reference. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-snowflaketablereference.html#cfn-cleanrooms-configuredtable-snowflaketablereference-secretarn */ readonly secretArn: string; /** * The name of the Snowflake table. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-snowflaketablereference.html#cfn-cleanrooms-configuredtable-snowflaketablereference-tablename */ readonly tableName: string; /** * The schema of the Snowflake table. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-snowflaketablereference.html#cfn-cleanrooms-configuredtable-snowflaketablereference-tableschema */ readonly tableSchema: cdk.IResolvable | CfnConfiguredTable.SnowflakeTableSchemaProperty; } /** * The schema of a Snowflake table. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-snowflaketableschema.html */ interface SnowflakeTableSchemaProperty { /** * The schema of a Snowflake table. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-snowflaketableschema.html#cfn-cleanrooms-configuredtable-snowflaketableschema-v1 */ readonly v1: Array | cdk.IResolvable; } /** * The Snowflake table schema. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-snowflaketableschemav1.html */ interface SnowflakeTableSchemaV1Property { /** * The column name. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-snowflaketableschemav1.html#cfn-cleanrooms-configuredtable-snowflaketableschemav1-columnname */ readonly columnName: string; /** * The column's data type. * * Supported data types: `ARRAY` , `BIGINT` , `BOOLEAN` , `CHAR` , `DATE` , `DECIMAL` , `DOUBLE` , `DOUBLE PRECISION` , `FLOAT` , `FLOAT4` , `INT` , `INTEGER` , `MAP` , `NUMERIC` , `NUMBER` , `REAL` , `SMALLINT` , `STRING` , `TIMESTAMP` , `TIMESTAMP_LTZ` , `TIMESTAMP_NTZ` , `DATETIME` , `TINYINT` , `VARCHAR` , `TEXT` , `CHARACTER` . * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-snowflaketableschemav1.html#cfn-cleanrooms-configuredtable-snowflaketableschemav1-columntype */ readonly columnType: string; } /** * A reference to a table within Athena. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-athenatablereference.html */ interface AthenaTableReferenceProperty { /** * The database name. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-athenatablereference.html#cfn-cleanrooms-configuredtable-athenatablereference-databasename */ readonly databaseName: string; /** * The output location for the Athena table. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-athenatablereference.html#cfn-cleanrooms-configuredtable-athenatablereference-outputlocation */ readonly outputLocation?: string; /** * The table reference. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-athenatablereference.html#cfn-cleanrooms-configuredtable-athenatablereference-tablename */ readonly tableName: string; /** * The workgroup of the Athena table reference. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-athenatablereference.html#cfn-cleanrooms-configuredtable-athenatablereference-workgroup */ readonly workGroup: string; } /** * A specification about how data from the configured table can be used in a query. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-analysisrule.html */ interface AnalysisRuleProperty { /** * A policy that describes the associated data usage limitations. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-analysisrule.html#cfn-cleanrooms-configuredtable-analysisrule-policy */ readonly policy: CfnConfiguredTable.ConfiguredTableAnalysisRulePolicyProperty | cdk.IResolvable; /** * The type of analysis rule. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-analysisrule.html#cfn-cleanrooms-configuredtable-analysisrule-type */ readonly type: string; } /** * Controls on the query specifications that can be run on a configured table. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-configuredtableanalysisrulepolicy.html */ interface ConfiguredTableAnalysisRulePolicyProperty { /** * Controls on the query specifications that can be run on a configured table. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-configuredtableanalysisrulepolicy.html#cfn-cleanrooms-configuredtable-configuredtableanalysisrulepolicy-v1 */ readonly v1: CfnConfiguredTable.ConfiguredTableAnalysisRulePolicyV1Property | cdk.IResolvable; } /** * Controls on the query specifications that can be run on a configured table. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-configuredtableanalysisrulepolicyv1.html */ interface ConfiguredTableAnalysisRulePolicyV1Property { /** * Analysis rule type that enables only aggregation queries on a configured table. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-configuredtableanalysisrulepolicyv1.html#cfn-cleanrooms-configuredtable-configuredtableanalysisrulepolicyv1-aggregation */ readonly aggregation?: CfnConfiguredTable.AnalysisRuleAggregationProperty | cdk.IResolvable; /** * Analysis rule type that enables custom SQL queries on a configured table. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-configuredtableanalysisrulepolicyv1.html#cfn-cleanrooms-configuredtable-configuredtableanalysisrulepolicyv1-custom */ readonly custom?: CfnConfiguredTable.AnalysisRuleCustomProperty | cdk.IResolvable; /** * Analysis rule type that enables only list queries on a configured table. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-configuredtableanalysisrulepolicyv1.html#cfn-cleanrooms-configuredtable-configuredtableanalysisrulepolicyv1-list */ readonly list?: CfnConfiguredTable.AnalysisRuleListProperty | cdk.IResolvable; } /** * A type of analysis rule that enables query structure and specified queries that produce aggregate statistics. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-analysisruleaggregation.html */ interface AnalysisRuleAggregationProperty { /** * An indicator as to whether additional analyses (such as AWS Clean Rooms ML) can be applied to the output of the direct query. * * The `additionalAnalyses` parameter is currently supported for the list analysis rule ( `AnalysisRuleList` ) and the custom analysis rule ( `AnalysisRuleCustom` ). * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-analysisruleaggregation.html#cfn-cleanrooms-configuredtable-analysisruleaggregation-additionalanalyses */ readonly additionalAnalyses?: string; /** * The columns that query runners are allowed to use in aggregation queries. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-analysisruleaggregation.html#cfn-cleanrooms-configuredtable-analysisruleaggregation-aggregatecolumns */ readonly aggregateColumns: Array | cdk.IResolvable; /** * Which logical operators (if any) are to be used in an INNER JOIN match condition. * * Default is `AND` . * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-analysisruleaggregation.html#cfn-cleanrooms-configuredtable-analysisruleaggregation-allowedjoinoperators */ readonly allowedJoinOperators?: Array; /** * The columns that query runners are allowed to select, group by, or filter by. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-analysisruleaggregation.html#cfn-cleanrooms-configuredtable-analysisruleaggregation-dimensioncolumns */ readonly dimensionColumns: Array; /** * Columns in configured table that can be used in join statements and/or as aggregate columns. * * They can never be outputted directly. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-analysisruleaggregation.html#cfn-cleanrooms-configuredtable-analysisruleaggregation-joincolumns */ readonly joinColumns: Array; /** * Control that requires member who runs query to do a join with their configured table and/or other configured table in query. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-analysisruleaggregation.html#cfn-cleanrooms-configuredtable-analysisruleaggregation-joinrequired */ readonly joinRequired?: string; /** * Columns that must meet a specific threshold value (after an aggregation function is applied to it) for each output row to be returned. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-analysisruleaggregation.html#cfn-cleanrooms-configuredtable-analysisruleaggregation-outputconstraints */ readonly outputConstraints: Array | cdk.IResolvable; /** * Set of scalar functions that are allowed to be used on dimension columns and the output of aggregation of metrics. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-analysisruleaggregation.html#cfn-cleanrooms-configuredtable-analysisruleaggregation-scalarfunctions */ readonly scalarFunctions: Array; } /** * Constraint on query output removing output rows that do not meet a minimum number of distinct values of a specified column. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-aggregationconstraint.html */ interface AggregationConstraintProperty { /** * Column in aggregation constraint for which there must be a minimum number of distinct values in an output row for it to be in the query output. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-aggregationconstraint.html#cfn-cleanrooms-configuredtable-aggregationconstraint-columnname */ readonly columnName: string; /** * The minimum number of distinct values that an output row must be an aggregation of. * * Minimum threshold of distinct values for a specified column that must exist in an output row for it to be in the query output. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-aggregationconstraint.html#cfn-cleanrooms-configuredtable-aggregationconstraint-minimum */ readonly minimum: number; /** * The type of aggregation the constraint allows. * * The only valid value is currently `COUNT_DISTINCT`. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-aggregationconstraint.html#cfn-cleanrooms-configuredtable-aggregationconstraint-type */ readonly type: string; } /** * Column in configured table that can be used in aggregate function in query. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-aggregatecolumn.html */ interface AggregateColumnProperty { /** * Column names in configured table of aggregate columns. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-aggregatecolumn.html#cfn-cleanrooms-configuredtable-aggregatecolumn-columnnames */ readonly columnNames: Array; /** * Aggregation function that can be applied to aggregate column in query. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-aggregatecolumn.html#cfn-cleanrooms-configuredtable-aggregatecolumn-function */ readonly function: string; } /** * A type of analysis rule that enables row-level analysis. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-analysisrulelist.html */ interface AnalysisRuleListProperty { /** * An indicator as to whether additional analyses (such as AWS Clean Rooms ML) can be applied to the output of the direct query. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-analysisrulelist.html#cfn-cleanrooms-configuredtable-analysisrulelist-additionalanalyses */ readonly additionalAnalyses?: string; /** * The logical operators (if any) that are to be used in an INNER JOIN match condition. * * Default is `AND` . * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-analysisrulelist.html#cfn-cleanrooms-configuredtable-analysisrulelist-allowedjoinoperators */ readonly allowedJoinOperators?: Array; /** * Columns that can be used to join a configured table with the table of the member who can query and other members' configured tables. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-analysisrulelist.html#cfn-cleanrooms-configuredtable-analysisrulelist-joincolumns */ readonly joinColumns: Array; /** * Columns that can be listed in the output. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-analysisrulelist.html#cfn-cleanrooms-configuredtable-analysisrulelist-listcolumns */ readonly listColumns: Array; } /** * A type of analysis rule that enables the table owner to approve custom SQL queries on their configured tables. * * It supports differential privacy. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-analysisrulecustom.html */ interface AnalysisRuleCustomProperty { /** * An indicator as to whether additional analyses (such as AWS Clean Rooms ML) can be applied to the output of the direct query. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-analysisrulecustom.html#cfn-cleanrooms-configuredtable-analysisrulecustom-additionalanalyses */ readonly additionalAnalyses?: string; /** * The ARN of the analysis templates that are allowed by the custom analysis rule. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-analysisrulecustom.html#cfn-cleanrooms-configuredtable-analysisrulecustom-allowedanalyses */ readonly allowedAnalyses: Array; /** * The IDs of the AWS accounts that are allowed to query by the custom analysis rule. * * Required when `allowedAnalyses` is `ANY_QUERY` . * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-analysisrulecustom.html#cfn-cleanrooms-configuredtable-analysisrulecustom-allowedanalysisproviders */ readonly allowedAnalysisProviders?: Array; /** * The differential privacy configuration. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-analysisrulecustom.html#cfn-cleanrooms-configuredtable-analysisrulecustom-differentialprivacy */ readonly differentialPrivacy?: CfnConfiguredTable.DifferentialPrivacyProperty | cdk.IResolvable; /** * A list of columns that aren't allowed to be shown in the query output. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-analysisrulecustom.html#cfn-cleanrooms-configuredtable-analysisrulecustom-disallowedoutputcolumns */ readonly disallowedOutputColumns?: Array; } /** * The analysis method allowed for the configured tables. * * `DIRECT_QUERY` allows SQL queries to be run directly on this table. * * `DIRECT_JOB` allows PySpark jobs to be run directly on this table. * * `MULTIPLE` allows both SQL queries and PySpark jobs to be run directly on this table. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-differentialprivacy.html */ interface DifferentialPrivacyProperty { /** * The name of the column, such as user_id, that contains the unique identifier of your users, whose privacy you want to protect. * * If you want to turn on differential privacy for two or more tables in a collaboration, you must configure the same column as the user identifier column in both analysis rules. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-differentialprivacy.html#cfn-cleanrooms-configuredtable-differentialprivacy-columns */ readonly columns: Array | cdk.IResolvable; } /** * Specifies the name of the column that contains the unique identifier of your users, whose privacy you want to protect. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-differentialprivacycolumn.html */ interface DifferentialPrivacyColumnProperty { /** * The name of the column, such as user_id, that contains the unique identifier of your users, whose privacy you want to protect. * * If you want to turn on differential privacy for two or more tables in a collaboration, you must configure the same column as the user identifier column in both analysis rules. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-differentialprivacycolumn.html#cfn-cleanrooms-configuredtable-differentialprivacycolumn-name */ readonly name: string; } } /** * Properties for defining a `CfnConfiguredTable` * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-configuredtable.html */ export interface CfnConfiguredTableProps { /** * The columns within the underlying AWS Glue table that can be utilized within collaborations. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-configuredtable.html#cfn-cleanrooms-configuredtable-allowedcolumns */ readonly allowedColumns: Array; /** * The analysis method for the configured table. * * `DIRECT_QUERY` allows SQL queries to be run directly on this table. * * `DIRECT_JOB` allows PySpark jobs to be run directly on this table. * * `MULTIPLE` allows both SQL queries and PySpark jobs to be run directly on this table. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-configuredtable.html#cfn-cleanrooms-configuredtable-analysismethod */ readonly analysisMethod: string; /** * The analysis rule that was created for the configured table. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-configuredtable.html#cfn-cleanrooms-configuredtable-analysisrules */ readonly analysisRules?: Array | cdk.IResolvable; /** * A description for the configured table. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-configuredtable.html#cfn-cleanrooms-configuredtable-description */ readonly description?: string; /** * A name for the configured table. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-configuredtable.html#cfn-cleanrooms-configuredtable-name */ readonly name: string; /** * The selected analysis methods for the configured table. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-configuredtable.html#cfn-cleanrooms-configuredtable-selectedanalysismethods */ readonly selectedAnalysisMethods?: Array; /** * The table that this configured table represents. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-configuredtable.html#cfn-cleanrooms-configuredtable-tablereference */ readonly tableReference: cdk.IResolvable | CfnConfiguredTable.TableReferenceProperty; /** * An optional label that you can assign to a resource when you create it. * * Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-configuredtable.html#cfn-cleanrooms-configuredtable-tags */ readonly tags?: Array; } /** * Creates a configured table association. * * A configured table association links a configured table with a collaboration. * * @cloudformationResource AWS::CleanRooms::ConfiguredTableAssociation * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-configuredtableassociation.html */ export declare class CfnConfiguredTableAssociation extends cdk.CfnResource implements cdk.IInspectable, cdk.ITaggableV2 { /** * The CloudFormation resource type name for this resource class. */ static readonly CFN_RESOURCE_TYPE_NAME: string; /** * Build a CfnConfiguredTableAssociation from CloudFormation properties * * A factory method that creates a new instance of this class from an object * containing the CloudFormation properties of this resource. * Used in the @aws-cdk/cloudformation-include module. * * @internal */ static _fromCloudFormation(scope: constructs.Construct, id: string, resourceAttributes: any, options: cfn_parse.FromCloudFormationOptions): CfnConfiguredTableAssociation; /** * Returns the Amazon Resource Name (ARN) of the specified configured table association. * * Example: `arn:aws:cleanrooms:us-east-1:111122223333:configuredtable/a1b2c3d4-5678-90ab-cdef-EXAMPLE33333` * * @cloudformationAttribute Arn */ readonly attrArn: string; /** * Returns the unique identifier of the specified configured table association. * * Example: `a1b2c3d4-5678-90ab-cdef-EXAMPLE33333` * * @cloudformationAttribute ConfiguredTableAssociationIdentifier */ readonly attrConfiguredTableAssociationIdentifier: string; /** * Tag Manager which manages the tags for this resource */ readonly cdkTagManager: cdk.TagManager; /** * An analysis rule for a configured table association. */ configuredTableAssociationAnalysisRules?: Array | cdk.IResolvable; /** * A unique identifier for the configured table to be associated to. */ configuredTableIdentifier: string; /** * A description of the configured table association. */ description?: string; /** * The unique ID for the membership this configured table association belongs to. */ membershipIdentifier: string; /** * The name of the configured table association, in lowercase. */ name: string; /** * The service will assume this role to access catalog metadata and query the table. */ roleArn: string; /** * An optional label that you can assign to a resource when you create it. */ tags?: Array; /** * @param scope Scope in which this resource is defined * @param id Construct identifier for this resource (unique in its scope) * @param props Resource properties */ constructor(scope: constructs.Construct, id: string, props: CfnConfiguredTableAssociationProps); protected get cfnProperties(): Record; /** * Examines the CloudFormation resource and discloses attributes * * @param inspector tree inspector to collect and process attributes */ inspect(inspector: cdk.TreeInspector): void; protected renderProperties(props: Record): Record; } export declare namespace CfnConfiguredTableAssociation { /** * An analysis rule for a configured table association. * * This analysis rule specifies how data from the table can be used within its associated collaboration. In the console, the `ConfiguredTableAssociationAnalysisRule` is referred to as the *collaboration analysis rule* . * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtableassociation-configuredtableassociationanalysisrule.html */ interface ConfiguredTableAssociationAnalysisRuleProperty { /** * The policy of the configured table association analysis rule. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtableassociation-configuredtableassociationanalysisrule.html#cfn-cleanrooms-configuredtableassociation-configuredtableassociationanalysisrule-policy */ readonly policy: CfnConfiguredTableAssociation.ConfiguredTableAssociationAnalysisRulePolicyProperty | cdk.IResolvable; /** * The type of the configured table association analysis rule. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtableassociation-configuredtableassociationanalysisrule.html#cfn-cleanrooms-configuredtableassociation-configuredtableassociationanalysisrule-type */ readonly type: string; } /** * Controls on the query specifications that can be run on an associated configured table. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtableassociation-configuredtableassociationanalysisrulepolicy.html */ interface ConfiguredTableAssociationAnalysisRulePolicyProperty { /** * The policy for the configured table association analysis rule. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtableassociation-configuredtableassociationanalysisrulepolicy.html#cfn-cleanrooms-configuredtableassociation-configuredtableassociationanalysisrulepolicy-v1 */ readonly v1: CfnConfiguredTableAssociation.ConfiguredTableAssociationAnalysisRulePolicyV1Property | cdk.IResolvable; } /** * Controls on the query specifications that can be run on an associated configured table. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtableassociation-configuredtableassociationanalysisrulepolicyv1.html */ interface ConfiguredTableAssociationAnalysisRulePolicyV1Property { /** * Analysis rule type that enables only aggregation queries on a configured table. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtableassociation-configuredtableassociationanalysisrulepolicyv1.html#cfn-cleanrooms-configuredtableassociation-configuredtableassociationanalysisrulepolicyv1-aggregation */ readonly aggregation?: CfnConfiguredTableAssociation.ConfiguredTableAssociationAnalysisRuleAggregationProperty | cdk.IResolvable; /** * Analysis rule type that enables the table owner to approve custom SQL queries on their configured tables. * * It supports differential privacy. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtableassociation-configuredtableassociationanalysisrulepolicyv1.html#cfn-cleanrooms-configuredtableassociation-configuredtableassociationanalysisrulepolicyv1-custom */ readonly custom?: CfnConfiguredTableAssociation.ConfiguredTableAssociationAnalysisRuleCustomProperty | cdk.IResolvable; /** * Analysis rule type that enables only list queries on a configured table. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtableassociation-configuredtableassociationanalysisrulepolicyv1.html#cfn-cleanrooms-configuredtableassociation-configuredtableassociationanalysisrulepolicyv1-list */ readonly list?: CfnConfiguredTableAssociation.ConfiguredTableAssociationAnalysisRuleListProperty | cdk.IResolvable; } /** * The configured table association analysis rule applied to a configured table with the list analysis rule. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtableassociation-configuredtableassociationanalysisrulelist.html */ interface ConfiguredTableAssociationAnalysisRuleListProperty { /** * The list of resources or wildcards (ARNs) that are allowed to perform additional analysis on query output. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtableassociation-configuredtableassociationanalysisrulelist.html#cfn-cleanrooms-configuredtableassociation-configuredtableassociationanalysisrulelist-allowedadditionalanalyses */ readonly allowedAdditionalAnalyses?: Array; /** * The list of collaboration members who are allowed to receive results of queries run with this configured table. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtableassociation-configuredtableassociationanalysisrulelist.html#cfn-cleanrooms-configuredtableassociation-configuredtableassociationanalysisrulelist-allowedresultreceivers */ readonly allowedResultReceivers?: Array; } /** * The configured table association analysis rule applied to a configured table with the aggregation analysis rule. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtableassociation-configuredtableassociationanalysisruleaggregation.html */ interface ConfiguredTableAssociationAnalysisRuleAggregationProperty { /** * The list of resources or wildcards (ARNs) that are allowed to perform additional analysis on query output. * * The `allowedAdditionalAnalyses` parameter is currently supported for the list analysis rule ( `AnalysisRuleList` ) and the custom analysis rule ( `AnalysisRuleCustom` ). * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtableassociation-configuredtableassociationanalysisruleaggregation.html#cfn-cleanrooms-configuredtableassociation-configuredtableassociationanalysisruleaggregation-allowedadditionalanalyses */ readonly allowedAdditionalAnalyses?: Array; /** * The list of collaboration members who are allowed to receive results of queries run with this configured table. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtableassociation-configuredtableassociationanalysisruleaggregation.html#cfn-cleanrooms-configuredtableassociation-configuredtableassociationanalysisruleaggregation-allowedresultreceivers */ readonly allowedResultReceivers?: Array; } /** * The configured table association analysis rule applied to a configured table with the custom analysis rule. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtableassociation-configuredtableassociationanalysisrulecustom.html */ interface ConfiguredTableAssociationAnalysisRuleCustomProperty { /** * The list of resources or wildcards (ARNs) that are allowed to perform additional analysis on query output. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtableassociation-configuredtableassociationanalysisrulecustom.html#cfn-cleanrooms-configuredtableassociation-configuredtableassociationanalysisrulecustom-allowedadditionalanalyses */ readonly allowedAdditionalAnalyses?: Array; /** * The list of collaboration members who are allowed to receive results of queries run with this configured table. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtableassociation-configuredtableassociationanalysisrulecustom.html#cfn-cleanrooms-configuredtableassociation-configuredtableassociationanalysisrulecustom-allowedresultreceivers */ readonly allowedResultReceivers?: Array; } } /** * Properties for defining a `CfnConfiguredTableAssociation` * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-configuredtableassociation.html */ export interface CfnConfiguredTableAssociationProps { /** * An analysis rule for a configured table association. * * This analysis rule specifies how data from the table can be used within its associated collaboration. In the console, the `ConfiguredTableAssociationAnalysisRule` is referred to as the *collaboration analysis rule* . * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-configuredtableassociation.html#cfn-cleanrooms-configuredtableassociation-configuredtableassociationanalysisrules */ readonly configuredTableAssociationAnalysisRules?: Array | cdk.IResolvable; /** * A unique identifier for the configured table to be associated to. * * Currently accepts a configured table ID. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-configuredtableassociation.html#cfn-cleanrooms-configuredtableassociation-configuredtableidentifier */ readonly configuredTableIdentifier: string; /** * A description of the configured table association. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-configuredtableassociation.html#cfn-cleanrooms-configuredtableassociation-description */ readonly description?: string; /** * The unique ID for the membership this configured table association belongs to. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-configuredtableassociation.html#cfn-cleanrooms-configuredtableassociation-membershipidentifier */ readonly membershipIdentifier: string; /** * The name of the configured table association, in lowercase. * * The table is identified by this name when running protected queries against the underlying data. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-configuredtableassociation.html#cfn-cleanrooms-configuredtableassociation-name */ readonly name: string; /** * The service will assume this role to access catalog metadata and query the table. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-configuredtableassociation.html#cfn-cleanrooms-configuredtableassociation-rolearn */ readonly roleArn: string; /** * An optional label that you can assign to a resource when you create it. * * Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-configuredtableassociation.html#cfn-cleanrooms-configuredtableassociation-tags */ readonly tags?: Array; } /** * Creates a membership for a specific collaboration identifier and joins the collaboration. * * @cloudformationResource AWS::CleanRooms::Membership * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-membership.html */ export declare class CfnMembership extends cdk.CfnResource implements cdk.IInspectable, cdk.ITaggableV2 { /** * The CloudFormation resource type name for this resource class. */ static readonly CFN_RESOURCE_TYPE_NAME: string; /** * Build a CfnMembership from CloudFormation properties * * A factory method that creates a new instance of this class from an object * containing the CloudFormation properties of this resource. * Used in the @aws-cdk/cloudformation-include module. * * @internal */ static _fromCloudFormation(scope: constructs.Construct, id: string, resourceAttributes: any, options: cfn_parse.FromCloudFormationOptions): CfnMembership; /** * Returns the Amazon Resource Name (ARN) of the specified membership. * * Example: `arn:aws:cleanrooms:us-east-1:111122223333:membership/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111` * * @cloudformationAttribute Arn */ readonly attrArn: string; /** * Returns the Amazon Resource Name (ARN) of the specified collaboration. * * Example: `arn:aws:cleanrooms:us-east-1:111122223333:collaboration/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111` * * @cloudformationAttribute CollaborationArn */ readonly attrCollaborationArn: string; /** * Returns the unique identifier of the specified collaboration creator account. * * Example: `a1b2c3d4-5678-90ab-cdef-EXAMPLE11111` * * @cloudformationAttribute CollaborationCreatorAccountId */ readonly attrCollaborationCreatorAccountId: string; /** * Returns the unique identifier of the specified membership. * * Example: `a1b2c3d4-5678-90ab-cdef-EXAMPLE22222` * * @cloudformationAttribute MembershipIdentifier */ readonly attrMembershipIdentifier: string; /** * Tag Manager which manages the tags for this resource */ readonly cdkTagManager: cdk.TagManager; /** * The unique ID for the associated collaboration. */ collaborationIdentifier: string; /** * The default job result configuration for the membership. */ defaultJobResultConfiguration?: cdk.IResolvable | CfnMembership.MembershipProtectedJobResultConfigurationProperty; /** * The default protected query result configuration as specified by the member who can receive results. */ defaultResultConfiguration?: cdk.IResolvable | CfnMembership.MembershipProtectedQueryResultConfigurationProperty; /** * An indicator as to whether job logging has been enabled or disabled for the collaboration. */ jobLogStatus?: string; /** * The payment responsibilities accepted by the collaboration member. */ paymentConfiguration?: cdk.IResolvable | CfnMembership.MembershipPaymentConfigurationProperty; /** * An indicator as to whether query logging has been enabled or disabled for the membership. */ queryLogStatus: string; /** * An optional label that you can assign to a resource when you create it. */ tags?: Array; /** * @param scope Scope in which this resource is defined * @param id Construct identifier for this resource (unique in its scope) * @param props Resource properties */ constructor(scope: constructs.Construct, id: string, props: CfnMembershipProps); protected get cfnProperties(): Record; /** * Examines the CloudFormation resource and discloses attributes * * @param inspector tree inspector to collect and process attributes */ inspect(inspector: cdk.TreeInspector): void; protected renderProperties(props: Record): Record; } export declare namespace CfnMembership { /** * Contains configurations for protected query results. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipprotectedqueryresultconfiguration.html */ interface MembershipProtectedQueryResultConfigurationProperty { /** * Configuration for protected query results. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipprotectedqueryresultconfiguration.html#cfn-cleanrooms-membership-membershipprotectedqueryresultconfiguration-outputconfiguration */ readonly outputConfiguration: cdk.IResolvable | CfnMembership.MembershipProtectedQueryOutputConfigurationProperty; /** * The unique ARN for an IAM role that is used by AWS Clean Rooms to write protected query results to the result location, given by the member who can receive results. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipprotectedqueryresultconfiguration.html#cfn-cleanrooms-membership-membershipprotectedqueryresultconfiguration-rolearn */ readonly roleArn?: string; } /** * Contains configurations for protected query results. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipprotectedqueryoutputconfiguration.html */ interface MembershipProtectedQueryOutputConfigurationProperty { /** * Required configuration for a protected query with an `s3` output type. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipprotectedqueryoutputconfiguration.html#cfn-cleanrooms-membership-membershipprotectedqueryoutputconfiguration-s3 */ readonly s3: cdk.IResolvable | CfnMembership.ProtectedQueryS3OutputConfigurationProperty; } /** * Contains the configuration to write the query results to S3. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-protectedquerys3outputconfiguration.html */ interface ProtectedQueryS3OutputConfigurationProperty { /** * The S3 bucket to unload the protected query results. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-protectedquerys3outputconfiguration.html#cfn-cleanrooms-membership-protectedquerys3outputconfiguration-bucket */ readonly bucket: string; /** * The S3 prefix to unload the protected query results. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-protectedquerys3outputconfiguration.html#cfn-cleanrooms-membership-protectedquerys3outputconfiguration-keyprefix */ readonly keyPrefix?: string; /** * Intended file format of the result. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-protectedquerys3outputconfiguration.html#cfn-cleanrooms-membership-protectedquerys3outputconfiguration-resultformat */ readonly resultFormat: string; /** * Indicates whether files should be output as a single file ( `TRUE` ) or output as multiple files ( `FALSE` ). * * This parameter is only supported for analyses with the Spark analytics engine. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-protectedquerys3outputconfiguration.html#cfn-cleanrooms-membership-protectedquerys3outputconfiguration-singlefileoutput */ readonly singleFileOutput?: boolean | cdk.IResolvable; } /** * Contains configurations for protected job results. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipprotectedjobresultconfiguration.html */ interface MembershipProtectedJobResultConfigurationProperty { /** * The output configuration for a protected job result. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipprotectedjobresultconfiguration.html#cfn-cleanrooms-membership-membershipprotectedjobresultconfiguration-outputconfiguration */ readonly outputConfiguration: cdk.IResolvable | CfnMembership.MembershipProtectedJobOutputConfigurationProperty; /** * The unique ARN for an IAM role that is used by AWS Clean Rooms to write protected job results to the result location, given by the member who can receive results. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipprotectedjobresultconfiguration.html#cfn-cleanrooms-membership-membershipprotectedjobresultconfiguration-rolearn */ readonly roleArn: string; } /** * Contains configurations for protected job results. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipprotectedjoboutputconfiguration.html */ interface MembershipProtectedJobOutputConfigurationProperty { /** * Contains the configuration to write the job results to S3. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipprotectedjoboutputconfiguration.html#cfn-cleanrooms-membership-membershipprotectedjoboutputconfiguration-s3 */ readonly s3: cdk.IResolvable | CfnMembership.ProtectedJobS3OutputConfigurationInputProperty; } /** * Contains input information for protected jobs with an S3 output type. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-protectedjobs3outputconfigurationinput.html */ interface ProtectedJobS3OutputConfigurationInputProperty { /** * The S3 bucket for job output. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-protectedjobs3outputconfigurationinput.html#cfn-cleanrooms-membership-protectedjobs3outputconfigurationinput-bucket */ readonly bucket: string; /** * The S3 prefix to unload the protected job results. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-protectedjobs3outputconfigurationinput.html#cfn-cleanrooms-membership-protectedjobs3outputconfigurationinput-keyprefix */ readonly keyPrefix?: string; } /** * An object representing the payment responsibilities accepted by the collaboration member. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershippaymentconfiguration.html */ interface MembershipPaymentConfigurationProperty { /** * The payment responsibilities accepted by the collaboration member for job compute costs. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershippaymentconfiguration.html#cfn-cleanrooms-membership-membershippaymentconfiguration-jobcompute */ readonly jobCompute?: cdk.IResolvable | CfnMembership.MembershipJobComputePaymentConfigProperty; /** * The payment responsibilities accepted by the collaboration member for machine learning costs. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershippaymentconfiguration.html#cfn-cleanrooms-membership-membershippaymentconfiguration-machinelearning */ readonly machineLearning?: cdk.IResolvable | CfnMembership.MembershipMLPaymentConfigProperty; /** * The payment responsibilities accepted by the collaboration member for query compute costs. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershippaymentconfiguration.html#cfn-cleanrooms-membership-membershippaymentconfiguration-querycompute */ readonly queryCompute: cdk.IResolvable | CfnMembership.MembershipQueryComputePaymentConfigProperty; } /** * An object representing the payment responsibilities accepted by the collaboration member for query compute costs. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipquerycomputepaymentconfig.html */ interface MembershipQueryComputePaymentConfigProperty { /** * Indicates whether the collaboration member has accepted to pay for query compute costs ( `TRUE` ) or has not accepted to pay for query compute costs ( `FALSE` ). * * If the collaboration creator has not specified anyone to pay for query compute costs, then the member who can query is the default payer. * * An error message is returned for the following reasons: * * - If you set the value to `FALSE` but you are responsible to pay for query compute costs. * - If you set the value to `TRUE` but you are not responsible to pay for query compute costs. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipquerycomputepaymentconfig.html#cfn-cleanrooms-membership-membershipquerycomputepaymentconfig-isresponsible */ readonly isResponsible: boolean | cdk.IResolvable; } /** * An object representing the collaboration member's machine learning payment responsibilities set by the collaboration creator. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipmlpaymentconfig.html */ interface MembershipMLPaymentConfigProperty { /** * The payment responsibilities accepted by the member for model inference. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipmlpaymentconfig.html#cfn-cleanrooms-membership-membershipmlpaymentconfig-modelinference */ readonly modelInference?: cdk.IResolvable | CfnMembership.MembershipModelInferencePaymentConfigProperty; /** * The payment responsibilities accepted by the member for model training. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipmlpaymentconfig.html#cfn-cleanrooms-membership-membershipmlpaymentconfig-modeltraining */ readonly modelTraining?: cdk.IResolvable | CfnMembership.MembershipModelTrainingPaymentConfigProperty; } /** * An object representing the collaboration member's model training payment responsibilities set by the collaboration creator. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipmodeltrainingpaymentconfig.html */ interface MembershipModelTrainingPaymentConfigProperty { /** * Indicates whether the collaboration member has accepted to pay for model training costs ( `TRUE` ) or has not accepted to pay for model training costs ( `FALSE` ). * * If the collaboration creator has not specified anyone to pay for model training costs, then the member who can query is the default payer. * * An error message is returned for the following reasons: * * - If you set the value to `FALSE` but you are responsible to pay for model training costs. * - If you set the value to `TRUE` but you are not responsible to pay for model training costs. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipmodeltrainingpaymentconfig.html#cfn-cleanrooms-membership-membershipmodeltrainingpaymentconfig-isresponsible */ readonly isResponsible: boolean | cdk.IResolvable; } /** * An object representing the collaboration member's model inference payment responsibilities set by the collaboration creator. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipmodelinferencepaymentconfig.html */ interface MembershipModelInferencePaymentConfigProperty { /** * Indicates whether the collaboration member has accepted to pay for model inference costs ( `TRUE` ) or has not accepted to pay for model inference costs ( `FALSE` ). * * If the collaboration creator has not specified anyone to pay for model inference costs, then the member who can query is the default payer. * * An error message is returned for the following reasons: * * - If you set the value to `FALSE` but you are responsible to pay for model inference costs. * - If you set the value to `TRUE` but you are not responsible to pay for model inference costs. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipmodelinferencepaymentconfig.html#cfn-cleanrooms-membership-membershipmodelinferencepaymentconfig-isresponsible */ readonly isResponsible: boolean | cdk.IResolvable; } /** * An object representing the payment responsibilities accepted by the collaboration member for query and job compute costs. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipjobcomputepaymentconfig.html */ interface MembershipJobComputePaymentConfigProperty { /** * Indicates whether the collaboration member has accepted to pay for job compute costs ( `TRUE` ) or has not accepted to pay for query and job compute costs ( `FALSE` ). * * There is only one member who pays for queries and jobs. * * An error message is returned for the following reasons: * * - If you set the value to `FALSE` but you are responsible to pay for query and job compute costs. * - If you set the value to `TRUE` but you are not responsible to pay for query and job compute costs. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipjobcomputepaymentconfig.html#cfn-cleanrooms-membership-membershipjobcomputepaymentconfig-isresponsible */ readonly isResponsible: boolean | cdk.IResolvable; } } /** * Properties for defining a `CfnMembership` * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-membership.html */ export interface CfnMembershipProps { /** * The unique ID for the associated collaboration. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-membership.html#cfn-cleanrooms-membership-collaborationidentifier */ readonly collaborationIdentifier: string; /** * The default job result configuration for the membership. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-membership.html#cfn-cleanrooms-membership-defaultjobresultconfiguration */ readonly defaultJobResultConfiguration?: cdk.IResolvable | CfnMembership.MembershipProtectedJobResultConfigurationProperty; /** * The default protected query result configuration as specified by the member who can receive results. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-membership.html#cfn-cleanrooms-membership-defaultresultconfiguration */ readonly defaultResultConfiguration?: cdk.IResolvable | CfnMembership.MembershipProtectedQueryResultConfigurationProperty; /** * An indicator as to whether job logging has been enabled or disabled for the collaboration. * * When `ENABLED` , AWS Clean Rooms logs details about jobs run within this collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value is `DISABLED` . * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-membership.html#cfn-cleanrooms-membership-joblogstatus */ readonly jobLogStatus?: string; /** * The payment responsibilities accepted by the collaboration member. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-membership.html#cfn-cleanrooms-membership-paymentconfiguration */ readonly paymentConfiguration?: cdk.IResolvable | CfnMembership.MembershipPaymentConfigurationProperty; /** * An indicator as to whether query logging has been enabled or disabled for the membership. * * When `ENABLED` , AWS Clean Rooms logs details about queries run within this collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value is `DISABLED` . * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-membership.html#cfn-cleanrooms-membership-querylogstatus */ readonly queryLogStatus: string; /** * An optional label that you can assign to a resource when you create it. * * Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-membership.html#cfn-cleanrooms-membership-tags */ readonly tags?: Array; } /** * Describes information about the ID mapping table. * * @cloudformationResource AWS::CleanRooms::IdMappingTable * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idmappingtable.html */ export declare class CfnIdMappingTable extends cdk.CfnResource implements cdk.IInspectable, cdk.ITaggableV2 { /** * The CloudFormation resource type name for this resource class. */ static readonly CFN_RESOURCE_TYPE_NAME: string; /** * Build a CfnIdMappingTable from CloudFormation properties * * A factory method that creates a new instance of this class from an object * containing the CloudFormation properties of this resource. * Used in the @aws-cdk/cloudformation-include module. * * @internal */ static _fromCloudFormation(scope: constructs.Construct, id: string, resourceAttributes: any, options: cfn_parse.FromCloudFormationOptions): CfnIdMappingTable; /** * The Amazon Resource Name (ARN) of the ID mapping table. * * @cloudformationAttribute Arn */ readonly attrArn: string; /** * The Amazon Resource Name (ARN) of the collaboration that contains this ID mapping table. * * @cloudformationAttribute CollaborationArn */ readonly attrCollaborationArn: string; /** * The unique identifier of the collaboration that contains this ID mapping table. * * @cloudformationAttribute CollaborationIdentifier */ readonly attrCollaborationIdentifier: string; /** * The unique identifier of the ID mapping table identifier that you want to retrieve. * * @cloudformationAttribute IdMappingTableIdentifier */ readonly attrIdMappingTableIdentifier: string; /** * @cloudformationAttribute InputReferenceProperties */ readonly attrInputReferenceProperties: cdk.IResolvable; /** * The Amazon Resource Name (ARN) of the membership resource for the ID mapping table. * * @cloudformationAttribute MembershipArn */ readonly attrMembershipArn: string; /** * Tag Manager which manages the tags for this resource */ readonly cdkTagManager: cdk.TagManager; /** * The description of the ID mapping table. */ description?: string; /** * The input reference configuration for the ID mapping table. */ inputReferenceConfig: CfnIdMappingTable.IdMappingTableInputReferenceConfigProperty | cdk.IResolvable; /** * The Amazon Resource Name (ARN) of the AWS KMS key. */ kmsKeyArn?: string; /** * The unique identifier of the membership resource for the ID mapping table. */ membershipIdentifier: string; /** * The name of the ID mapping table. */ name: string; /** * An optional label that you can assign to a resource when you create it. */ tags?: Array; /** * @param scope Scope in which this resource is defined * @param id Construct identifier for this resource (unique in its scope) * @param props Resource properties */ constructor(scope: constructs.Construct, id: string, props: CfnIdMappingTableProps); protected get cfnProperties(): Record; /** * Examines the CloudFormation resource and discloses attributes * * @param inspector tree inspector to collect and process attributes */ inspect(inspector: cdk.TreeInspector): void; protected renderProperties(props: Record): Record; } export declare namespace CfnIdMappingTable { /** * Provides the input reference configuration for the ID mapping table. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idmappingtable-idmappingtableinputreferenceconfig.html */ interface IdMappingTableInputReferenceConfigProperty { /** * The Amazon Resource Name (ARN) of the referenced resource in AWS Entity Resolution . * * Valid values are ID mapping workflow ARNs. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idmappingtable-idmappingtableinputreferenceconfig.html#cfn-cleanrooms-idmappingtable-idmappingtableinputreferenceconfig-inputreferencearn */ readonly inputReferenceArn: string; /** * When `TRUE` , AWS Clean Rooms manages permissions for the ID mapping table resource. * * When `FALSE` , the resource owner manages permissions for the ID mapping table resource. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idmappingtable-idmappingtableinputreferenceconfig.html#cfn-cleanrooms-idmappingtable-idmappingtableinputreferenceconfig-manageresourcepolicies */ readonly manageResourcePolicies: boolean | cdk.IResolvable; } /** * The input reference properties for the ID mapping table. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idmappingtable-idmappingtableinputreferenceproperties.html */ interface IdMappingTableInputReferencePropertiesProperty { /** * The input source of the ID mapping table. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idmappingtable-idmappingtableinputreferenceproperties.html#cfn-cleanrooms-idmappingtable-idmappingtableinputreferenceproperties-idmappingtableinputsource */ readonly idMappingTableInputSource: Array | cdk.IResolvable; } /** * The input source of the ID mapping table. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idmappingtable-idmappingtableinputsource.html */ interface IdMappingTableInputSourceProperty { /** * The unique identifier of the ID namespace association. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idmappingtable-idmappingtableinputsource.html#cfn-cleanrooms-idmappingtable-idmappingtableinputsource-idnamespaceassociationid */ readonly idNamespaceAssociationId: string; /** * The type of the input source of the ID mapping table. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idmappingtable-idmappingtableinputsource.html#cfn-cleanrooms-idmappingtable-idmappingtableinputsource-type */ readonly type: string; } } /** * Properties for defining a `CfnIdMappingTable` * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idmappingtable.html */ export interface CfnIdMappingTableProps { /** * The description of the ID mapping table. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idmappingtable.html#cfn-cleanrooms-idmappingtable-description */ readonly description?: string; /** * The input reference configuration for the ID mapping table. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idmappingtable.html#cfn-cleanrooms-idmappingtable-inputreferenceconfig */ readonly inputReferenceConfig: CfnIdMappingTable.IdMappingTableInputReferenceConfigProperty | cdk.IResolvable; /** * The Amazon Resource Name (ARN) of the AWS KMS key. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idmappingtable.html#cfn-cleanrooms-idmappingtable-kmskeyarn */ readonly kmsKeyArn?: string; /** * The unique identifier of the membership resource for the ID mapping table. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idmappingtable.html#cfn-cleanrooms-idmappingtable-membershipidentifier */ readonly membershipIdentifier: string; /** * The name of the ID mapping table. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idmappingtable.html#cfn-cleanrooms-idmappingtable-name */ readonly name: string; /** * An optional label that you can assign to a resource when you create it. * * Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idmappingtable.html#cfn-cleanrooms-idmappingtable-tags */ readonly tags?: Array; } /** * Provides information to create the ID namespace association. * * @cloudformationResource AWS::CleanRooms::IdNamespaceAssociation * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idnamespaceassociation.html */ export declare class CfnIdNamespaceAssociation extends cdk.CfnResource implements cdk.IInspectable, cdk.ITaggableV2 { /** * The CloudFormation resource type name for this resource class. */ static readonly CFN_RESOURCE_TYPE_NAME: string; /** * Build a CfnIdNamespaceAssociation from CloudFormation properties * * A factory method that creates a new instance of this class from an object * containing the CloudFormation properties of this resource. * Used in the @aws-cdk/cloudformation-include module. * * @internal */ static _fromCloudFormation(scope: constructs.Construct, id: string, resourceAttributes: any, options: cfn_parse.FromCloudFormationOptions): CfnIdNamespaceAssociation; /** * The Amazon Resource Name (ARN) of the ID namespace association. * * @cloudformationAttribute Arn */ readonly attrArn: string; /** * The Amazon Resource Name (ARN) of the collaboration that contains this ID namespace association. * * @cloudformationAttribute CollaborationArn */ readonly attrCollaborationArn: string; /** * The unique identifier of the collaboration that contains this ID namespace association. * * @cloudformationAttribute CollaborationIdentifier */ readonly attrCollaborationIdentifier: string; /** * The unique identifier of the ID namespace association that you want to retrieve. * * @cloudformationAttribute IdNamespaceAssociationIdentifier */ readonly attrIdNamespaceAssociationIdentifier: string; /** * @cloudformationAttribute InputReferenceProperties */ readonly attrInputReferenceProperties: cdk.IResolvable; /** * The Amazon Resource Name (ARN) of the membership resource for this ID namespace association. * * @cloudformationAttribute MembershipArn */ readonly attrMembershipArn: string; /** * Tag Manager which manages the tags for this resource */ readonly cdkTagManager: cdk.TagManager; /** * The description of the ID namespace association. */ description?: string; /** * The configuration settings for the ID mapping table. */ idMappingConfig?: CfnIdNamespaceAssociation.IdMappingConfigProperty | cdk.IResolvable; /** * The input reference configuration for the ID namespace association. */ inputReferenceConfig: CfnIdNamespaceAssociation.IdNamespaceAssociationInputReferenceConfigProperty | cdk.IResolvable; /** * The unique identifier of the membership that contains the ID namespace association. */ membershipIdentifier: string; /** * The name of this ID namespace association. */ name: string; /** * An optional label that you can assign to a resource when you create it. */ tags?: Array; /** * @param scope Scope in which this resource is defined * @param id Construct identifier for this resource (unique in its scope) * @param props Resource properties */ constructor(scope: constructs.Construct, id: string, props: CfnIdNamespaceAssociationProps); protected get cfnProperties(): Record; /** * Examines the CloudFormation resource and discloses attributes * * @param inspector tree inspector to collect and process attributes */ inspect(inspector: cdk.TreeInspector): void; protected renderProperties(props: Record): Record; } export declare namespace CfnIdNamespaceAssociation { /** * Provides the information for the ID namespace association input reference configuration. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idnamespaceassociation-idnamespaceassociationinputreferenceconfig.html */ interface IdNamespaceAssociationInputReferenceConfigProperty { /** * The Amazon Resource Name (ARN) of the AWS Entity Resolution resource that is being associated to the collaboration. * * Valid resource ARNs are from the ID namespaces that you own. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idnamespaceassociation-idnamespaceassociationinputreferenceconfig.html#cfn-cleanrooms-idnamespaceassociation-idnamespaceassociationinputreferenceconfig-inputreferencearn */ readonly inputReferenceArn: string; /** * When `TRUE` , AWS Clean Rooms manages permissions for the ID namespace association resource. * * When `FALSE` , the resource owner manages permissions for the ID namespace association resource. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idnamespaceassociation-idnamespaceassociationinputreferenceconfig.html#cfn-cleanrooms-idnamespaceassociation-idnamespaceassociationinputreferenceconfig-manageresourcepolicies */ readonly manageResourcePolicies: boolean | cdk.IResolvable; } /** * The configuration settings for the ID mapping table. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idnamespaceassociation-idmappingconfig.html */ interface IdMappingConfigProperty { /** * An indicator as to whether you can use your column as a dimension column in the ID mapping table ( `TRUE` ) or not ( `FALSE` ). * * Default is `FALSE` . * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idnamespaceassociation-idmappingconfig.html#cfn-cleanrooms-idnamespaceassociation-idmappingconfig-allowuseasdimensioncolumn */ readonly allowUseAsDimensionColumn: boolean | cdk.IResolvable; } /** * Provides the information for the ID namespace association input reference properties. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idnamespaceassociation-idnamespaceassociationinputreferenceproperties.html */ interface IdNamespaceAssociationInputReferencePropertiesProperty { /** * Defines how ID mapping workflows are supported for this ID namespace association. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idnamespaceassociation-idnamespaceassociationinputreferenceproperties.html#cfn-cleanrooms-idnamespaceassociation-idnamespaceassociationinputreferenceproperties-idmappingworkflowssupported */ readonly idMappingWorkflowsSupported?: Array | cdk.IResolvable; /** * The ID namespace type for this ID namespace association. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idnamespaceassociation-idnamespaceassociationinputreferenceproperties.html#cfn-cleanrooms-idnamespaceassociation-idnamespaceassociationinputreferenceproperties-idnamespacetype */ readonly idNamespaceType?: string; } } /** * Properties for defining a `CfnIdNamespaceAssociation` * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idnamespaceassociation.html */ export interface CfnIdNamespaceAssociationProps { /** * The description of the ID namespace association. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idnamespaceassociation.html#cfn-cleanrooms-idnamespaceassociation-description */ readonly description?: string; /** * The configuration settings for the ID mapping table. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idnamespaceassociation.html#cfn-cleanrooms-idnamespaceassociation-idmappingconfig */ readonly idMappingConfig?: CfnIdNamespaceAssociation.IdMappingConfigProperty | cdk.IResolvable; /** * The input reference configuration for the ID namespace association. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idnamespaceassociation.html#cfn-cleanrooms-idnamespaceassociation-inputreferenceconfig */ readonly inputReferenceConfig: CfnIdNamespaceAssociation.IdNamespaceAssociationInputReferenceConfigProperty | cdk.IResolvable; /** * The unique identifier of the membership that contains the ID namespace association. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idnamespaceassociation.html#cfn-cleanrooms-idnamespaceassociation-membershipidentifier */ readonly membershipIdentifier: string; /** * The name of this ID namespace association. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idnamespaceassociation.html#cfn-cleanrooms-idnamespaceassociation-name */ readonly name: string; /** * An optional label that you can assign to a resource when you create it. * * Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idnamespaceassociation.html#cfn-cleanrooms-idnamespaceassociation-tags */ readonly tags?: Array; } /** * An object that defines the privacy budget template. * * @cloudformationResource AWS::CleanRooms::PrivacyBudgetTemplate * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-privacybudgettemplate.html */ export declare class CfnPrivacyBudgetTemplate extends cdk.CfnResource implements cdk.IInspectable, cdk.ITaggableV2 { /** * The CloudFormation resource type name for this resource class. */ static readonly CFN_RESOURCE_TYPE_NAME: string; /** * Build a CfnPrivacyBudgetTemplate from CloudFormation properties * * A factory method that creates a new instance of this class from an object * containing the CloudFormation properties of this resource. * Used in the @aws-cdk/cloudformation-include module. * * @internal */ static _fromCloudFormation(scope: constructs.Construct, id: string, resourceAttributes: any, options: cfn_parse.FromCloudFormationOptions): CfnPrivacyBudgetTemplate; /** * The ARN of the privacy budget template. * * @cloudformationAttribute Arn */ readonly attrArn: string; /** * The ARN of the collaboration that contains this privacy budget template. * * @cloudformationAttribute CollaborationArn */ readonly attrCollaborationArn: string; /** * The unique ID of the collaboration that contains this privacy budget template. * * @cloudformationAttribute CollaborationIdentifier */ readonly attrCollaborationIdentifier: string; /** * The Amazon Resource Name (ARN) of the member who created the privacy budget template. * * @cloudformationAttribute MembershipArn */ readonly attrMembershipArn: string; /** * A unique identifier for one of your memberships for a collaboration. The privacy budget template is created in the collaboration that this membership belongs to. Accepts a membership ID. * * @cloudformationAttribute PrivacyBudgetTemplateIdentifier */ readonly attrPrivacyBudgetTemplateIdentifier: string; /** * How often the privacy budget refreshes. */ autoRefresh: string; /** * Tag Manager which manages the tags for this resource */ readonly cdkTagManager: cdk.TagManager; /** * The identifier for a membership resource. */ membershipIdentifier: string; /** * Specifies the epsilon and noise parameters for the privacy budget template. */ parameters: cdk.IResolvable | CfnPrivacyBudgetTemplate.ParametersProperty; /** * Specifies the type of the privacy budget template. */ privacyBudgetType: string; /** * An optional label that you can assign to a resource when you create it. */ tags?: Array; /** * @param scope Scope in which this resource is defined * @param id Construct identifier for this resource (unique in its scope) * @param props Resource properties */ constructor(scope: constructs.Construct, id: string, props: CfnPrivacyBudgetTemplateProps); protected get cfnProperties(): Record; /** * Examines the CloudFormation resource and discloses attributes * * @param inspector tree inspector to collect and process attributes */ inspect(inspector: cdk.TreeInspector): void; protected renderProperties(props: Record): Record; } export declare namespace CfnPrivacyBudgetTemplate { /** * Specifies the epsilon and noise parameters for the privacy budget template. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-privacybudgettemplate-parameters.html */ interface ParametersProperty { /** * The epsilon value that you want to use. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-privacybudgettemplate-parameters.html#cfn-cleanrooms-privacybudgettemplate-parameters-epsilon */ readonly epsilon: number; /** * Noise added per query is measured in terms of the number of users whose contributions you want to obscure. * * This value governs the rate at which the privacy budget is depleted. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-privacybudgettemplate-parameters.html#cfn-cleanrooms-privacybudgettemplate-parameters-usersnoiseperquery */ readonly usersNoisePerQuery: number; } } /** * Properties for defining a `CfnPrivacyBudgetTemplate` * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-privacybudgettemplate.html */ export interface CfnPrivacyBudgetTemplateProps { /** * How often the privacy budget refreshes. * * > If you plan to regularly bring new data into the collaboration, use `CALENDAR_MONTH` to automatically get a new privacy budget for the collaboration every calendar month. Choosing this option allows arbitrary amounts of information to be revealed about rows of the data when repeatedly queried across refreshes. Avoid choosing this if the same rows will be repeatedly queried between privacy budget refreshes. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-privacybudgettemplate.html#cfn-cleanrooms-privacybudgettemplate-autorefresh */ readonly autoRefresh: string; /** * The identifier for a membership resource. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-privacybudgettemplate.html#cfn-cleanrooms-privacybudgettemplate-membershipidentifier */ readonly membershipIdentifier: string; /** * Specifies the epsilon and noise parameters for the privacy budget template. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-privacybudgettemplate.html#cfn-cleanrooms-privacybudgettemplate-parameters */ readonly parameters: cdk.IResolvable | CfnPrivacyBudgetTemplate.ParametersProperty; /** * Specifies the type of the privacy budget template. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-privacybudgettemplate.html#cfn-cleanrooms-privacybudgettemplate-privacybudgettype */ readonly privacyBudgetType: string; /** * An optional label that you can assign to a resource when you create it. * * Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-privacybudgettemplate.html#cfn-cleanrooms-privacybudgettemplate-tags */ readonly tags?: Array; }