1771 lines
86 KiB
TypeScript
1771 lines
86 KiB
TypeScript
import * as cdk from "../../core/lib";
|
|
import * as constructs from "constructs";
|
|
import * as cfn_parse from "../../core/lib/helpers-internal";
|
|
import { IdMappingWorkflowReference, IdNamespaceReference, IIdMappingWorkflowRef, IIdNamespaceRef, IMatchingWorkflowRef, IPolicyStatementRef, ISchemaMappingRef, MatchingWorkflowReference, PolicyStatementReference, SchemaMappingReference } from "../../interfaces/generated/aws-entityresolution-interfaces.generated";
|
|
/**
|
|
* Creates a matching workflow that defines the configuration for a data processing job.
|
|
*
|
|
* The workflow name must be unique. To modify an existing workflow, use `UpdateMatchingWorkflow` .
|
|
*
|
|
* > For workflows where `resolutionType` is `ML_MATCHING` or `PROVIDER` , incremental processing is not supported.
|
|
*
|
|
* @cloudformationResource AWS::EntityResolution::MatchingWorkflow
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-matchingworkflow.html
|
|
*/
|
|
export declare class CfnMatchingWorkflow extends cdk.CfnResource implements cdk.IInspectable, IMatchingWorkflowRef, cdk.ITaggableV2 {
|
|
/**
|
|
* The CloudFormation resource type name for this resource class.
|
|
*/
|
|
static readonly CFN_RESOURCE_TYPE_NAME: string;
|
|
/**
|
|
* Build a CfnMatchingWorkflow 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): CfnMatchingWorkflow;
|
|
/**
|
|
* Checks whether the given object is a CfnMatchingWorkflow
|
|
*/
|
|
static isCfnMatchingWorkflow(x: any): x is CfnMatchingWorkflow;
|
|
/**
|
|
* Creates a new IMatchingWorkflowRef from a workflowName
|
|
*/
|
|
static fromWorkflowName(scope: constructs.Construct, id: string, workflowName: string): IMatchingWorkflowRef;
|
|
static arnForMatchingWorkflow(resource: IMatchingWorkflowRef): string;
|
|
/**
|
|
* Tag Manager which manages the tags for this resource
|
|
*/
|
|
readonly cdkTagManager: cdk.TagManager;
|
|
/**
|
|
* A description of the workflow.
|
|
*/
|
|
private _description?;
|
|
/**
|
|
* Optional.
|
|
*/
|
|
private _incrementalRunConfig?;
|
|
/**
|
|
* A list of `InputSource` objects, which have the fields `InputSourceARN` and `SchemaName` .
|
|
*/
|
|
private _inputSourceConfig;
|
|
/**
|
|
* A list of `OutputSource` objects, each of which contains fields `outputS3Path` , `applyNormalization` , `KMSArn` , and `output` .
|
|
*/
|
|
private _outputSourceConfig;
|
|
/**
|
|
* An object which defines the `resolutionType` and the `ruleBasedProperties` .
|
|
*/
|
|
private _resolutionTechniques;
|
|
/**
|
|
* The Amazon Resource Name (ARN) of the IAM role.
|
|
*/
|
|
private _roleArn;
|
|
/**
|
|
* The tags used to organize, track, or control access for this resource.
|
|
*/
|
|
private _tags?;
|
|
/**
|
|
* The name of the workflow.
|
|
*/
|
|
private _workflowName;
|
|
protected readonly cfnPropertyNames: Record<string, string>;
|
|
/**
|
|
* Create a new `AWS::EntityResolution::MatchingWorkflow`.
|
|
*
|
|
* @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: CfnMatchingWorkflowProps);
|
|
get matchingWorkflowRef(): MatchingWorkflowReference;
|
|
/**
|
|
* A description of the workflow.
|
|
*/
|
|
get description(): string | undefined;
|
|
/**
|
|
* A description of the workflow.
|
|
*/
|
|
set description(value: string | undefined);
|
|
/**
|
|
* Optional.
|
|
*/
|
|
get incrementalRunConfig(): CfnMatchingWorkflow.IncrementalRunConfigProperty | cdk.IResolvable | undefined;
|
|
/**
|
|
* Optional.
|
|
*/
|
|
set incrementalRunConfig(value: CfnMatchingWorkflow.IncrementalRunConfigProperty | cdk.IResolvable | undefined);
|
|
/**
|
|
* A list of `InputSource` objects, which have the fields `InputSourceARN` and `SchemaName` .
|
|
*/
|
|
get inputSourceConfig(): Array<CfnMatchingWorkflow.InputSourceProperty | cdk.IResolvable> | cdk.IResolvable;
|
|
/**
|
|
* A list of `InputSource` objects, which have the fields `InputSourceARN` and `SchemaName` .
|
|
*/
|
|
set inputSourceConfig(value: Array<CfnMatchingWorkflow.InputSourceProperty | cdk.IResolvable> | cdk.IResolvable);
|
|
/**
|
|
* A list of `OutputSource` objects, each of which contains fields `outputS3Path` , `applyNormalization` , `KMSArn` , and `output` .
|
|
*/
|
|
get outputSourceConfig(): Array<cdk.IResolvable | CfnMatchingWorkflow.OutputSourceProperty> | cdk.IResolvable;
|
|
/**
|
|
* A list of `OutputSource` objects, each of which contains fields `outputS3Path` , `applyNormalization` , `KMSArn` , and `output` .
|
|
*/
|
|
set outputSourceConfig(value: Array<cdk.IResolvable | CfnMatchingWorkflow.OutputSourceProperty> | cdk.IResolvable);
|
|
/**
|
|
* An object which defines the `resolutionType` and the `ruleBasedProperties` .
|
|
*/
|
|
get resolutionTechniques(): cdk.IResolvable | CfnMatchingWorkflow.ResolutionTechniquesProperty;
|
|
/**
|
|
* An object which defines the `resolutionType` and the `ruleBasedProperties` .
|
|
*/
|
|
set resolutionTechniques(value: cdk.IResolvable | CfnMatchingWorkflow.ResolutionTechniquesProperty);
|
|
/**
|
|
* The Amazon Resource Name (ARN) of the IAM role.
|
|
*/
|
|
get roleArn(): string;
|
|
/**
|
|
* The Amazon Resource Name (ARN) of the IAM role.
|
|
*/
|
|
set roleArn(value: string);
|
|
/**
|
|
* The tags used to organize, track, or control access for this resource.
|
|
*/
|
|
get tags(): Array<cdk.CfnTag> | undefined;
|
|
/**
|
|
* The tags used to organize, track, or control access for this resource.
|
|
*/
|
|
set tags(value: Array<cdk.CfnTag> | undefined);
|
|
/**
|
|
* The name of the workflow.
|
|
*/
|
|
get workflowName(): string;
|
|
/**
|
|
* The name of the workflow.
|
|
*/
|
|
set workflowName(value: string);
|
|
/**
|
|
* The time of this MatchingWorkflow got created
|
|
*
|
|
* @cloudformationAttribute CreatedAt
|
|
*/
|
|
get attrCreatedAt(): string;
|
|
/**
|
|
* The time of this MatchingWorkflow got last updated at
|
|
*
|
|
* @cloudformationAttribute UpdatedAt
|
|
*/
|
|
get attrUpdatedAt(): string;
|
|
/**
|
|
* The default MatchingWorkflow arn
|
|
*
|
|
* @cloudformationAttribute WorkflowArn
|
|
*/
|
|
get attrWorkflowArn(): string;
|
|
protected get cfnProperties(): Record<string, any>;
|
|
/**
|
|
* 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<string, any>): Record<string, any>;
|
|
}
|
|
export declare namespace CfnMatchingWorkflow {
|
|
/**
|
|
* An object which defines the `resolutionType` and the `ruleBasedProperties` .
|
|
*
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-resolutiontechniques.html
|
|
*/
|
|
interface ResolutionTechniquesProperty {
|
|
/**
|
|
* The properties of the provider service.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-resolutiontechniques.html#cfn-entityresolution-matchingworkflow-resolutiontechniques-providerproperties
|
|
*/
|
|
readonly providerProperties?: cdk.IResolvable | CfnMatchingWorkflow.ProviderPropertiesProperty;
|
|
/**
|
|
* The type of matching workflow to create. Specify one of the following types:.
|
|
*
|
|
* - `RULE_MATCHING` : Match records using configurable rule-based criteria
|
|
* - `ML_MATCHING` : Match records using machine learning models
|
|
* - `PROVIDER` : Match records using a third-party matching provider
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-resolutiontechniques.html#cfn-entityresolution-matchingworkflow-resolutiontechniques-resolutiontype
|
|
*/
|
|
readonly resolutionType?: string;
|
|
/**
|
|
* An object which defines the list of matching rules to run and has a field `rules` , which is a list of rule objects.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-resolutiontechniques.html#cfn-entityresolution-matchingworkflow-resolutiontechniques-rulebasedproperties
|
|
*/
|
|
readonly ruleBasedProperties?: cdk.IResolvable | CfnMatchingWorkflow.RuleBasedPropertiesProperty;
|
|
/**
|
|
* An object containing the `rules` for a matching workflow.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-resolutiontechniques.html#cfn-entityresolution-matchingworkflow-resolutiontechniques-ruleconditionproperties
|
|
*/
|
|
readonly ruleConditionProperties?: cdk.IResolvable | CfnMatchingWorkflow.RuleConditionPropertiesProperty;
|
|
}
|
|
/**
|
|
* An object which defines the list of matching rules to run in a matching workflow.
|
|
*
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-rulebasedproperties.html
|
|
*/
|
|
interface RuleBasedPropertiesProperty {
|
|
/**
|
|
* The comparison type. You can choose `ONE_TO_ONE` or `MANY_TO_MANY` as the `attributeMatchingModel` .
|
|
*
|
|
* If you choose `ONE_TO_ONE` , the system can only match attributes if the sub-types are an exact match. For example, for the `Email` attribute type, the system will only consider it a match if the value of the `Email` field of Profile A matches the value of the `Email` field of Profile B.
|
|
*
|
|
* If you choose `MANY_TO_MANY` , the system can match attributes across the sub-types of an attribute type. For example, if the value of the `Email` field of Profile A and the value of `BusinessEmail` field of Profile B matches, the two profiles are matched on the `Email` attribute type.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-rulebasedproperties.html#cfn-entityresolution-matchingworkflow-rulebasedproperties-attributematchingmodel
|
|
*/
|
|
readonly attributeMatchingModel: string;
|
|
/**
|
|
* An indicator of whether to generate IDs and index the data or not.
|
|
*
|
|
* If you choose `IDENTIFIER_GENERATION` , the process generates IDs and indexes the data.
|
|
*
|
|
* If you choose `INDEXING` , the process indexes the data without generating IDs.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-rulebasedproperties.html#cfn-entityresolution-matchingworkflow-rulebasedproperties-matchpurpose
|
|
*/
|
|
readonly matchPurpose?: string;
|
|
/**
|
|
* A list of `Rule` objects, each of which have fields `RuleName` and `MatchingKeys` .
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-rulebasedproperties.html#cfn-entityresolution-matchingworkflow-rulebasedproperties-rules
|
|
*/
|
|
readonly rules: Array<cdk.IResolvable | CfnMatchingWorkflow.RuleProperty> | cdk.IResolvable;
|
|
}
|
|
/**
|
|
* An object containing the `ruleName` and `matchingKeys` .
|
|
*
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-rule.html
|
|
*/
|
|
interface RuleProperty {
|
|
/**
|
|
* A list of `MatchingKeys` .
|
|
*
|
|
* The `MatchingKeys` must have been defined in the `SchemaMapping` . Two records are considered to match according to this rule if all of the `MatchingKeys` match.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-rule.html#cfn-entityresolution-matchingworkflow-rule-matchingkeys
|
|
*/
|
|
readonly matchingKeys: Array<string>;
|
|
/**
|
|
* A name for the matching rule.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-rule.html#cfn-entityresolution-matchingworkflow-rule-rulename
|
|
*/
|
|
readonly ruleName: string;
|
|
}
|
|
/**
|
|
* The properties of a rule condition that provides the ability to use more complex syntax.
|
|
*
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-ruleconditionproperties.html
|
|
*/
|
|
interface RuleConditionPropertiesProperty {
|
|
/**
|
|
* A list of rule objects, each of which have fields `ruleName` and `condition` .
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-ruleconditionproperties.html#cfn-entityresolution-matchingworkflow-ruleconditionproperties-rules
|
|
*/
|
|
readonly rules: Array<cdk.IResolvable | CfnMatchingWorkflow.RuleConditionProperty> | cdk.IResolvable;
|
|
}
|
|
/**
|
|
* An object that defines the `ruleCondition` and the `ruleName` to use in a matching workflow.
|
|
*
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-rulecondition.html
|
|
*/
|
|
interface RuleConditionProperty {
|
|
/**
|
|
* A statement that specifies the conditions for a matching rule.
|
|
*
|
|
* If your data is accurate, use an Exact matching function: `Exact` or `ExactManyToMany` .
|
|
*
|
|
* If your data has variations in spelling or pronunciation, use a Fuzzy matching function: `Cosine` , `Levenshtein` , or `Soundex` .
|
|
*
|
|
* Use operators if you want to combine ( `AND` ), separate ( `OR` ), or group matching functions `(...)` .
|
|
*
|
|
* For example: `(Cosine(a, 10) AND Exact(b, true)) OR ExactManyToMany(c, d)`
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-rulecondition.html#cfn-entityresolution-matchingworkflow-rulecondition-condition
|
|
*/
|
|
readonly condition?: string;
|
|
/**
|
|
* A name for the matching rule.
|
|
*
|
|
* For example: `Rule1`
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-rulecondition.html#cfn-entityresolution-matchingworkflow-rulecondition-rulename
|
|
*/
|
|
readonly ruleName?: string;
|
|
}
|
|
/**
|
|
* An object containing the `providerServiceARN` , `intermediateSourceConfiguration` , and `providerConfiguration` .
|
|
*
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-providerproperties.html
|
|
*/
|
|
interface ProviderPropertiesProperty {
|
|
/**
|
|
* The Amazon S3 location that temporarily stores your data while it processes.
|
|
*
|
|
* Your information won't be saved permanently.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-providerproperties.html#cfn-entityresolution-matchingworkflow-providerproperties-intermediatesourceconfiguration
|
|
*/
|
|
readonly intermediateSourceConfiguration?: CfnMatchingWorkflow.IntermediateSourceConfigurationProperty | cdk.IResolvable;
|
|
/**
|
|
* The required configuration fields to use with the provider service.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-providerproperties.html#cfn-entityresolution-matchingworkflow-providerproperties-providerconfiguration
|
|
*/
|
|
readonly providerConfiguration?: cdk.IResolvable | Record<string, string>;
|
|
/**
|
|
* The ARN of the provider service.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-providerproperties.html#cfn-entityresolution-matchingworkflow-providerproperties-providerservicearn
|
|
*/
|
|
readonly providerServiceArn: string;
|
|
}
|
|
/**
|
|
* The Amazon S3 location that temporarily stores your data while it processes.
|
|
*
|
|
* Your information won't be saved permanently.
|
|
*
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-intermediatesourceconfiguration.html
|
|
*/
|
|
interface IntermediateSourceConfigurationProperty {
|
|
/**
|
|
* The Amazon S3 location (bucket and prefix).
|
|
*
|
|
* For example: `s3://provider_bucket/DOC-EXAMPLE-BUCKET`
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-intermediatesourceconfiguration.html#cfn-entityresolution-matchingworkflow-intermediatesourceconfiguration-intermediates3path
|
|
*/
|
|
readonly intermediateS3Path: string;
|
|
}
|
|
/**
|
|
* An object containing `inputSourceARN` , `schemaName` , and `applyNormalization` .
|
|
*
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-inputsource.html
|
|
*/
|
|
interface InputSourceProperty {
|
|
/**
|
|
* Normalizes the attributes defined in the schema in the input data.
|
|
*
|
|
* For example, if an attribute has an `AttributeType` of `PHONE_NUMBER` , and the data in the input table is in a format of 1234567890, AWS Entity Resolution will normalize this field in the output to (123)-456-7890.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-inputsource.html#cfn-entityresolution-matchingworkflow-inputsource-applynormalization
|
|
*/
|
|
readonly applyNormalization?: boolean | cdk.IResolvable;
|
|
/**
|
|
* An object containing `inputSourceARN` , `schemaName` , and `applyNormalization` .
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-inputsource.html#cfn-entityresolution-matchingworkflow-inputsource-inputsourcearn
|
|
*/
|
|
readonly inputSourceArn: string;
|
|
/**
|
|
* The name of the schema.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-inputsource.html#cfn-entityresolution-matchingworkflow-inputsource-schemaarn
|
|
*/
|
|
readonly schemaArn: string;
|
|
}
|
|
/**
|
|
* A list of `OutputAttribute` objects, each of which have the fields `Name` and `Hashed` .
|
|
*
|
|
* Each of these objects selects a column to be included in the output table, and whether the values of the column should be hashed.
|
|
*
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-outputsource.html
|
|
*/
|
|
interface OutputSourceProperty {
|
|
/**
|
|
* Normalizes the attributes defined in the schema in the input data.
|
|
*
|
|
* For example, if an attribute has an `AttributeType` of `PHONE_NUMBER` , and the data in the input table is in a format of 1234567890, AWS Entity Resolution will normalize this field in the output to (123)-456-7890.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-outputsource.html#cfn-entityresolution-matchingworkflow-outputsource-applynormalization
|
|
*/
|
|
readonly applyNormalization?: boolean | cdk.IResolvable;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-outputsource.html#cfn-entityresolution-matchingworkflow-outputsource-customerprofilesintegrationconfig
|
|
*/
|
|
readonly customerProfilesIntegrationConfig?: CfnMatchingWorkflow.CustomerProfilesIntegrationConfigProperty | cdk.IResolvable;
|
|
/**
|
|
* Customer KMS ARN for encryption at rest.
|
|
*
|
|
* If not provided, system will use an AWS Entity Resolution managed KMS key.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-outputsource.html#cfn-entityresolution-matchingworkflow-outputsource-kmsarn
|
|
*/
|
|
readonly kmsArn?: string;
|
|
/**
|
|
* A list of `OutputAttribute` objects, each of which have the fields `Name` and `Hashed` .
|
|
*
|
|
* Each of these objects selects a column to be included in the output table, and whether the values of the column should be hashed.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-outputsource.html#cfn-entityresolution-matchingworkflow-outputsource-output
|
|
*/
|
|
readonly output: Array<cdk.IResolvable | CfnMatchingWorkflow.OutputAttributeProperty> | cdk.IResolvable;
|
|
/**
|
|
* The S3 path to which AWS Entity Resolution will write the output table.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-outputsource.html#cfn-entityresolution-matchingworkflow-outputsource-outputs3path
|
|
*/
|
|
readonly outputS3Path?: string;
|
|
}
|
|
/**
|
|
* A list of `OutputAttribute` objects, each of which have the fields `Name` and `Hashed` .
|
|
*
|
|
* Each of these objects selects a column to be included in the output table, and whether the values of the column should be hashed.
|
|
*
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-outputattribute.html
|
|
*/
|
|
interface OutputAttributeProperty {
|
|
/**
|
|
* Enables the ability to hash the column values in the output.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-outputattribute.html#cfn-entityresolution-matchingworkflow-outputattribute-hashed
|
|
*/
|
|
readonly hashed?: boolean | cdk.IResolvable;
|
|
/**
|
|
* A name of a column to be written to the output.
|
|
*
|
|
* This must be an `InputField` name in the schema mapping.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-outputattribute.html#cfn-entityresolution-matchingworkflow-outputattribute-name
|
|
*/
|
|
readonly name: string;
|
|
}
|
|
/**
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-customerprofilesintegrationconfig.html
|
|
*/
|
|
interface CustomerProfilesIntegrationConfigProperty {
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-customerprofilesintegrationconfig.html#cfn-entityresolution-matchingworkflow-customerprofilesintegrationconfig-domainarn
|
|
*/
|
|
readonly domainArn: string;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-customerprofilesintegrationconfig.html#cfn-entityresolution-matchingworkflow-customerprofilesintegrationconfig-objecttypearn
|
|
*/
|
|
readonly objectTypeArn: string;
|
|
}
|
|
/**
|
|
* Optional.
|
|
*
|
|
* An object that defines the incremental run type. This object contains only the `incrementalRunType` field, which appears as "Automatic" in the console.
|
|
*
|
|
* > For workflows where `resolutionType` is `ML_MATCHING` or `PROVIDER` , incremental processing is not supported.
|
|
*
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-incrementalrunconfig.html
|
|
*/
|
|
interface IncrementalRunConfigProperty {
|
|
/**
|
|
* The type of incremental run. The only valid value is `IMMEDIATE` . This appears as "Automatic" in the console.
|
|
*
|
|
* > For workflows where `resolutionType` is `ML_MATCHING` or `PROVIDER` , incremental processing is not supported.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-incrementalrunconfig.html#cfn-entityresolution-matchingworkflow-incrementalrunconfig-incrementalruntype
|
|
*/
|
|
readonly incrementalRunType: string;
|
|
}
|
|
}
|
|
/**
|
|
* Properties for defining a `CfnMatchingWorkflow`
|
|
*
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-matchingworkflow.html
|
|
*/
|
|
export interface CfnMatchingWorkflowProps {
|
|
/**
|
|
* A description of the workflow.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-matchingworkflow.html#cfn-entityresolution-matchingworkflow-description
|
|
*/
|
|
readonly description?: string;
|
|
/**
|
|
* Optional.
|
|
*
|
|
* An object that defines the incremental run type. This object contains only the `incrementalRunType` field, which appears as "Automatic" in the console.
|
|
*
|
|
* > For workflows where `resolutionType` is `ML_MATCHING` or `PROVIDER` , incremental processing is not supported.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-matchingworkflow.html#cfn-entityresolution-matchingworkflow-incrementalrunconfig
|
|
*/
|
|
readonly incrementalRunConfig?: CfnMatchingWorkflow.IncrementalRunConfigProperty | cdk.IResolvable;
|
|
/**
|
|
* A list of `InputSource` objects, which have the fields `InputSourceARN` and `SchemaName` .
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-matchingworkflow.html#cfn-entityresolution-matchingworkflow-inputsourceconfig
|
|
*/
|
|
readonly inputSourceConfig: Array<CfnMatchingWorkflow.InputSourceProperty | cdk.IResolvable> | cdk.IResolvable;
|
|
/**
|
|
* A list of `OutputSource` objects, each of which contains fields `outputS3Path` , `applyNormalization` , `KMSArn` , and `output` .
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-matchingworkflow.html#cfn-entityresolution-matchingworkflow-outputsourceconfig
|
|
*/
|
|
readonly outputSourceConfig: Array<cdk.IResolvable | CfnMatchingWorkflow.OutputSourceProperty> | cdk.IResolvable;
|
|
/**
|
|
* An object which defines the `resolutionType` and the `ruleBasedProperties` .
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-matchingworkflow.html#cfn-entityresolution-matchingworkflow-resolutiontechniques
|
|
*/
|
|
readonly resolutionTechniques: cdk.IResolvable | CfnMatchingWorkflow.ResolutionTechniquesProperty;
|
|
/**
|
|
* The Amazon Resource Name (ARN) of the IAM role.
|
|
*
|
|
* AWS Entity Resolution assumes this role to create resources on your behalf as part of workflow execution.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-matchingworkflow.html#cfn-entityresolution-matchingworkflow-rolearn
|
|
*/
|
|
readonly roleArn: string;
|
|
/**
|
|
* The tags used to organize, track, or control access for this resource.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-matchingworkflow.html#cfn-entityresolution-matchingworkflow-tags
|
|
*/
|
|
readonly tags?: Array<cdk.CfnTag>;
|
|
/**
|
|
* The name of the workflow.
|
|
*
|
|
* There can't be multiple `MatchingWorkflows` with the same name.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-matchingworkflow.html#cfn-entityresolution-matchingworkflow-workflowname
|
|
*/
|
|
readonly workflowName: string;
|
|
}
|
|
/**
|
|
* Creates a schema mapping, which defines the schema of the input customer records table.
|
|
*
|
|
* The `SchemaMapping` also provides AWS Entity Resolution with some metadata about the table, such as the attribute types of the columns and which columns to match on.
|
|
*
|
|
* @cloudformationResource AWS::EntityResolution::SchemaMapping
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-schemamapping.html
|
|
*/
|
|
export declare class CfnSchemaMapping extends cdk.CfnResource implements cdk.IInspectable, ISchemaMappingRef, cdk.ITaggableV2 {
|
|
/**
|
|
* The CloudFormation resource type name for this resource class.
|
|
*/
|
|
static readonly CFN_RESOURCE_TYPE_NAME: string;
|
|
/**
|
|
* Build a CfnSchemaMapping 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): CfnSchemaMapping;
|
|
/**
|
|
* Checks whether the given object is a CfnSchemaMapping
|
|
*/
|
|
static isCfnSchemaMapping(x: any): x is CfnSchemaMapping;
|
|
/**
|
|
* Creates a new ISchemaMappingRef from a schemaName
|
|
*/
|
|
static fromSchemaName(scope: constructs.Construct, id: string, schemaName: string): ISchemaMappingRef;
|
|
static arnForSchemaMapping(resource: ISchemaMappingRef): string;
|
|
/**
|
|
* Tag Manager which manages the tags for this resource
|
|
*/
|
|
readonly cdkTagManager: cdk.TagManager;
|
|
/**
|
|
* A description of the schema.
|
|
*/
|
|
private _description?;
|
|
/**
|
|
* A list of `MappedInputFields` .
|
|
*/
|
|
private _mappedInputFields;
|
|
/**
|
|
* The name of the schema.
|
|
*/
|
|
private _schemaName;
|
|
/**
|
|
* The tags used to organize, track, or control access for this resource.
|
|
*/
|
|
private _tags?;
|
|
protected readonly cfnPropertyNames: Record<string, string>;
|
|
/**
|
|
* Create a new `AWS::EntityResolution::SchemaMapping`.
|
|
*
|
|
* @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: CfnSchemaMappingProps);
|
|
get schemaMappingRef(): SchemaMappingReference;
|
|
/**
|
|
* A description of the schema.
|
|
*/
|
|
get description(): string | undefined;
|
|
/**
|
|
* A description of the schema.
|
|
*/
|
|
set description(value: string | undefined);
|
|
/**
|
|
* A list of `MappedInputFields` .
|
|
*/
|
|
get mappedInputFields(): Array<cdk.IResolvable | CfnSchemaMapping.SchemaInputAttributeProperty> | cdk.IResolvable;
|
|
/**
|
|
* A list of `MappedInputFields` .
|
|
*/
|
|
set mappedInputFields(value: Array<cdk.IResolvable | CfnSchemaMapping.SchemaInputAttributeProperty> | cdk.IResolvable);
|
|
/**
|
|
* The name of the schema.
|
|
*/
|
|
get schemaName(): string;
|
|
/**
|
|
* The name of the schema.
|
|
*/
|
|
set schemaName(value: string);
|
|
/**
|
|
* The tags used to organize, track, or control access for this resource.
|
|
*/
|
|
get tags(): Array<cdk.CfnTag> | undefined;
|
|
/**
|
|
* The tags used to organize, track, or control access for this resource.
|
|
*/
|
|
set tags(value: Array<cdk.CfnTag> | undefined);
|
|
/**
|
|
* The time of this SchemaMapping got created
|
|
*
|
|
* @cloudformationAttribute CreatedAt
|
|
*/
|
|
get attrCreatedAt(): string;
|
|
/**
|
|
* The boolean value that indicates whether or not a SchemaMapping has MatchingWorkflows that are associated with
|
|
*
|
|
* @cloudformationAttribute HasWorkflows
|
|
*/
|
|
get attrHasWorkflows(): cdk.IResolvable;
|
|
/**
|
|
* The SchemaMapping arn associated with the Schema
|
|
*
|
|
* @cloudformationAttribute SchemaArn
|
|
*/
|
|
get attrSchemaArn(): string;
|
|
/**
|
|
* The time of this SchemaMapping got last updated at
|
|
*
|
|
* @cloudformationAttribute UpdatedAt
|
|
*/
|
|
get attrUpdatedAt(): string;
|
|
protected get cfnProperties(): Record<string, any>;
|
|
/**
|
|
* 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<string, any>): Record<string, any>;
|
|
}
|
|
export declare namespace CfnSchemaMapping {
|
|
/**
|
|
* A configuration object for defining input data fields in AWS Entity Resolution .
|
|
*
|
|
* The `SchemaInputAttribute` specifies how individual fields in your input data should be processed and matched.
|
|
*
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-schemamapping-schemainputattribute.html
|
|
*/
|
|
interface SchemaInputAttributeProperty {
|
|
/**
|
|
* A string containing the field name.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-schemamapping-schemainputattribute.html#cfn-entityresolution-schemamapping-schemainputattribute-fieldname
|
|
*/
|
|
readonly fieldName: string;
|
|
/**
|
|
* A string that instructs AWS Entity Resolution to combine several columns into a unified column with the identical attribute type.
|
|
*
|
|
* For example, when working with columns such as `NAME_FIRST` , `NAME_MIDDLE` , and `NAME_LAST` , assigning them a common `groupName` will prompt AWS Entity Resolution to concatenate them into a single value.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-schemamapping-schemainputattribute.html#cfn-entityresolution-schemamapping-schemainputattribute-groupname
|
|
*/
|
|
readonly groupName?: string;
|
|
/**
|
|
* Indicates if the column values are hashed in the schema input.
|
|
*
|
|
* If the value is set to `TRUE` , the column values are hashed.
|
|
*
|
|
* If the value is set to `FALSE` , the column values are cleartext.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-schemamapping-schemainputattribute.html#cfn-entityresolution-schemamapping-schemainputattribute-hashed
|
|
*/
|
|
readonly hashed?: boolean | cdk.IResolvable;
|
|
/**
|
|
* A key that allows grouping of multiple input attributes into a unified matching group.
|
|
*
|
|
* For example, consider a scenario where the source table contains various addresses, such as `business_address` and `shipping_address` . By assigning a `matchKey` called `address` to both attributes, AWS Entity Resolution will match records across these fields to create a consolidated matching group.
|
|
*
|
|
* If no `matchKey` is specified for a column, it won't be utilized for matching purposes but will still be included in the output table.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-schemamapping-schemainputattribute.html#cfn-entityresolution-schemamapping-schemainputattribute-matchkey
|
|
*/
|
|
readonly matchKey?: string;
|
|
/**
|
|
* The subtype of the attribute, selected from a list of values.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-schemamapping-schemainputattribute.html#cfn-entityresolution-schemamapping-schemainputattribute-subtype
|
|
*/
|
|
readonly subType?: string;
|
|
/**
|
|
* The type of the attribute, selected from a list of values.
|
|
*
|
|
* LiveRamp supports: `NAME` | `NAME_FIRST` | `NAME_MIDDLE` | `NAME_LAST` | `ADDRESS` | `ADDRESS_STREET1` | `ADDRESS_STREET2` | `ADDRESS_STREET3` | `ADDRESS_CITY` | `ADDRESS_STATE` | `ADDRESS_COUNTRY` | `ADDRESS_POSTALCODE` | `PHONE` | `PHONE_NUMBER` | `EMAIL_ADDRESS` | `UNIQUE_ID` | `PROVIDER_ID`
|
|
*
|
|
* TransUnion supports: `NAME` | `NAME_FIRST` | `NAME_LAST` | `ADDRESS` | `ADDRESS_CITY` | `ADDRESS_STATE` | `ADDRESS_COUNTRY` | `ADDRESS_POSTALCODE` | `PHONE_NUMBER` | `EMAIL_ADDRESS` | `UNIQUE_ID` | `IPV4` | `IPV6` | `MAID`
|
|
*
|
|
* Unified ID 2.0 supports: `PHONE_NUMBER` | `EMAIL_ADDRESS` | `UNIQUE_ID`
|
|
*
|
|
* > Normalization is only supported for `NAME` , `ADDRESS` , `PHONE` , and `EMAIL_ADDRESS` .
|
|
* >
|
|
* > If you want to normalize `NAME_FIRST` , `NAME_MIDDLE` , and `NAME_LAST` , you must group them by assigning them to the `NAME` `groupName` .
|
|
* >
|
|
* > If you want to normalize `ADDRESS_STREET1` , `ADDRESS_STREET2` , `ADDRESS_STREET3` , `ADDRESS_CITY` , `ADDRESS_STATE` , `ADDRESS_COUNTRY` , and `ADDRESS_POSTALCODE` , you must group them by assigning them to the `ADDRESS` `groupName` .
|
|
* >
|
|
* > If you want to normalize `PHONE_NUMBER` and `PHONE_COUNTRYCODE` , you must group them by assigning them to the `PHONE` `groupName` .
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-schemamapping-schemainputattribute.html#cfn-entityresolution-schemamapping-schemainputattribute-type
|
|
*/
|
|
readonly type: string;
|
|
}
|
|
}
|
|
/**
|
|
* Properties for defining a `CfnSchemaMapping`
|
|
*
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-schemamapping.html
|
|
*/
|
|
export interface CfnSchemaMappingProps {
|
|
/**
|
|
* A description of the schema.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-schemamapping.html#cfn-entityresolution-schemamapping-description
|
|
*/
|
|
readonly description?: string;
|
|
/**
|
|
* A list of `MappedInputFields` .
|
|
*
|
|
* Each `MappedInputField` corresponds to a column the source data table, and contains column name plus additional information that AWS Entity Resolution uses for matching.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-schemamapping.html#cfn-entityresolution-schemamapping-mappedinputfields
|
|
*/
|
|
readonly mappedInputFields: Array<cdk.IResolvable | CfnSchemaMapping.SchemaInputAttributeProperty> | cdk.IResolvable;
|
|
/**
|
|
* The name of the schema.
|
|
*
|
|
* There can't be multiple `SchemaMappings` with the same name.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-schemamapping.html#cfn-entityresolution-schemamapping-schemaname
|
|
*/
|
|
readonly schemaName: string;
|
|
/**
|
|
* The tags used to organize, track, or control access for this resource.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-schemamapping.html#cfn-entityresolution-schemamapping-tags
|
|
*/
|
|
readonly tags?: Array<cdk.CfnTag>;
|
|
}
|
|
/**
|
|
* Creates an `IdMappingWorkflow` object which stores the configuration of the data processing job to be run.
|
|
*
|
|
* Each `IdMappingWorkflow` must have a unique workflow name. To modify an existing workflow, use the UpdateIdMappingWorkflow API.
|
|
*
|
|
* > Incremental processing is not supported for ID mapping workflows.
|
|
*
|
|
* @cloudformationResource AWS::EntityResolution::IdMappingWorkflow
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-idmappingworkflow.html
|
|
*/
|
|
export declare class CfnIdMappingWorkflow extends cdk.CfnResource implements cdk.IInspectable, IIdMappingWorkflowRef, cdk.ITaggableV2 {
|
|
/**
|
|
* The CloudFormation resource type name for this resource class.
|
|
*/
|
|
static readonly CFN_RESOURCE_TYPE_NAME: string;
|
|
/**
|
|
* Build a CfnIdMappingWorkflow 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): CfnIdMappingWorkflow;
|
|
/**
|
|
* Checks whether the given object is a CfnIdMappingWorkflow
|
|
*/
|
|
static isCfnIdMappingWorkflow(x: any): x is CfnIdMappingWorkflow;
|
|
/**
|
|
* Creates a new IIdMappingWorkflowRef from a workflowName
|
|
*/
|
|
static fromWorkflowName(scope: constructs.Construct, id: string, workflowName: string): IIdMappingWorkflowRef;
|
|
static arnForIdMappingWorkflow(resource: IIdMappingWorkflowRef): string;
|
|
/**
|
|
* Tag Manager which manages the tags for this resource
|
|
*/
|
|
readonly cdkTagManager: cdk.TagManager;
|
|
/**
|
|
* A description of the workflow.
|
|
*/
|
|
private _description?;
|
|
private _idMappingIncrementalRunConfig?;
|
|
/**
|
|
* An object which defines the ID mapping technique and any additional configurations.
|
|
*/
|
|
private _idMappingTechniques;
|
|
/**
|
|
* A list of `InputSource` objects, which have the fields `InputSourceARN` and `SchemaName` .
|
|
*/
|
|
private _inputSourceConfig;
|
|
/**
|
|
* A list of `IdMappingWorkflowOutputSource` objects, each of which contains fields `outputS3Path` and `KMSArn` .
|
|
*/
|
|
private _outputSourceConfig?;
|
|
/**
|
|
* The Amazon Resource Name (ARN) of the IAM role.
|
|
*/
|
|
private _roleArn;
|
|
/**
|
|
* The tags used to organize, track, or control access for this resource.
|
|
*/
|
|
private _tags?;
|
|
/**
|
|
* The name of the workflow.
|
|
*/
|
|
private _workflowName;
|
|
protected readonly cfnPropertyNames: Record<string, string>;
|
|
/**
|
|
* Create a new `AWS::EntityResolution::IdMappingWorkflow`.
|
|
*
|
|
* @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: CfnIdMappingWorkflowProps);
|
|
get idMappingWorkflowRef(): IdMappingWorkflowReference;
|
|
/**
|
|
* A description of the workflow.
|
|
*/
|
|
get description(): string | undefined;
|
|
/**
|
|
* A description of the workflow.
|
|
*/
|
|
set description(value: string | undefined);
|
|
get idMappingIncrementalRunConfig(): CfnIdMappingWorkflow.IdMappingIncrementalRunConfigProperty | cdk.IResolvable | undefined;
|
|
set idMappingIncrementalRunConfig(value: CfnIdMappingWorkflow.IdMappingIncrementalRunConfigProperty | cdk.IResolvable | undefined);
|
|
/**
|
|
* An object which defines the ID mapping technique and any additional configurations.
|
|
*/
|
|
get idMappingTechniques(): CfnIdMappingWorkflow.IdMappingTechniquesProperty | cdk.IResolvable;
|
|
/**
|
|
* An object which defines the ID mapping technique and any additional configurations.
|
|
*/
|
|
set idMappingTechniques(value: CfnIdMappingWorkflow.IdMappingTechniquesProperty | cdk.IResolvable);
|
|
/**
|
|
* A list of `InputSource` objects, which have the fields `InputSourceARN` and `SchemaName` .
|
|
*/
|
|
get inputSourceConfig(): Array<CfnIdMappingWorkflow.IdMappingWorkflowInputSourceProperty | cdk.IResolvable> | cdk.IResolvable;
|
|
/**
|
|
* A list of `InputSource` objects, which have the fields `InputSourceARN` and `SchemaName` .
|
|
*/
|
|
set inputSourceConfig(value: Array<CfnIdMappingWorkflow.IdMappingWorkflowInputSourceProperty | cdk.IResolvable> | cdk.IResolvable);
|
|
/**
|
|
* A list of `IdMappingWorkflowOutputSource` objects, each of which contains fields `outputS3Path` and `KMSArn` .
|
|
*/
|
|
get outputSourceConfig(): Array<CfnIdMappingWorkflow.IdMappingWorkflowOutputSourceProperty | cdk.IResolvable> | cdk.IResolvable | undefined;
|
|
/**
|
|
* A list of `IdMappingWorkflowOutputSource` objects, each of which contains fields `outputS3Path` and `KMSArn` .
|
|
*/
|
|
set outputSourceConfig(value: Array<CfnIdMappingWorkflow.IdMappingWorkflowOutputSourceProperty | cdk.IResolvable> | cdk.IResolvable | undefined);
|
|
/**
|
|
* The Amazon Resource Name (ARN) of the IAM role.
|
|
*/
|
|
get roleArn(): string;
|
|
/**
|
|
* The Amazon Resource Name (ARN) of the IAM role.
|
|
*/
|
|
set roleArn(value: string);
|
|
/**
|
|
* The tags used to organize, track, or control access for this resource.
|
|
*/
|
|
get tags(): Array<cdk.CfnTag> | undefined;
|
|
/**
|
|
* The tags used to organize, track, or control access for this resource.
|
|
*/
|
|
set tags(value: Array<cdk.CfnTag> | undefined);
|
|
/**
|
|
* The name of the workflow.
|
|
*/
|
|
get workflowName(): string;
|
|
/**
|
|
* The name of the workflow.
|
|
*/
|
|
set workflowName(value: string);
|
|
/**
|
|
* The time of this IdMappingWorkflow got created
|
|
*
|
|
* @cloudformationAttribute CreatedAt
|
|
*/
|
|
get attrCreatedAt(): string;
|
|
/**
|
|
* The time of this IdMappingWorkflow got last updated at
|
|
*
|
|
* @cloudformationAttribute UpdatedAt
|
|
*/
|
|
get attrUpdatedAt(): string;
|
|
/**
|
|
* The default IdMappingWorkflow arn
|
|
*
|
|
* @cloudformationAttribute WorkflowArn
|
|
*/
|
|
get attrWorkflowArn(): string;
|
|
protected get cfnProperties(): Record<string, any>;
|
|
/**
|
|
* 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<string, any>): Record<string, any>;
|
|
}
|
|
export declare namespace CfnIdMappingWorkflow {
|
|
/**
|
|
* An object containing `inputSourceARN` , `schemaName` , and `type` .
|
|
*
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-idmappingworkflowinputsource.html
|
|
*/
|
|
interface IdMappingWorkflowInputSourceProperty {
|
|
/**
|
|
* An AWS Glue table Amazon Resource Name (ARN) or a matching workflow ARN for the input source table.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-idmappingworkflowinputsource.html#cfn-entityresolution-idmappingworkflow-idmappingworkflowinputsource-inputsourcearn
|
|
*/
|
|
readonly inputSourceArn: string;
|
|
/**
|
|
* The ARN (Amazon Resource Name) that AWS Entity Resolution generated for the `SchemaMapping` .
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-idmappingworkflowinputsource.html#cfn-entityresolution-idmappingworkflow-idmappingworkflowinputsource-schemaarn
|
|
*/
|
|
readonly schemaArn?: string;
|
|
/**
|
|
* The type of ID namespace. There are two types: `SOURCE` and `TARGET` .
|
|
*
|
|
* The `SOURCE` contains configurations for `sourceId` data that will be processed in an ID mapping workflow.
|
|
*
|
|
* The `TARGET` contains a configuration of `targetId` which all `sourceIds` will resolve to.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-idmappingworkflowinputsource.html#cfn-entityresolution-idmappingworkflow-idmappingworkflowinputsource-type
|
|
*/
|
|
readonly type?: string;
|
|
}
|
|
/**
|
|
* An object which defines the ID mapping technique and any additional configurations.
|
|
*
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-idmappingtechniques.html
|
|
*/
|
|
interface IdMappingTechniquesProperty {
|
|
/**
|
|
* The type of ID mapping.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-idmappingtechniques.html#cfn-entityresolution-idmappingworkflow-idmappingtechniques-idmappingtype
|
|
*/
|
|
readonly idMappingType?: string;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-idmappingtechniques.html#cfn-entityresolution-idmappingworkflow-idmappingtechniques-normalizationversion
|
|
*/
|
|
readonly normalizationVersion?: string;
|
|
/**
|
|
* An object which defines any additional configurations required by the provider service.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-idmappingtechniques.html#cfn-entityresolution-idmappingworkflow-idmappingtechniques-providerproperties
|
|
*/
|
|
readonly providerProperties?: cdk.IResolvable | CfnIdMappingWorkflow.ProviderPropertiesProperty;
|
|
/**
|
|
* An object which defines any additional configurations required by rule-based matching.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-idmappingtechniques.html#cfn-entityresolution-idmappingworkflow-idmappingtechniques-rulebasedproperties
|
|
*/
|
|
readonly ruleBasedProperties?: CfnIdMappingWorkflow.IdMappingRuleBasedPropertiesProperty | cdk.IResolvable;
|
|
}
|
|
/**
|
|
* An object that defines the list of matching rules to run in an ID mapping workflow.
|
|
*
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-idmappingrulebasedproperties.html
|
|
*/
|
|
interface IdMappingRuleBasedPropertiesProperty {
|
|
/**
|
|
* The comparison type. You can either choose `ONE_TO_ONE` or `MANY_TO_MANY` as the `attributeMatchingModel` .
|
|
*
|
|
* If you choose `ONE_TO_ONE` , the system can only match attributes if the sub-types are an exact match. For example, for the `Email` attribute type, the system will only consider it a match if the value of the `Email` field of Profile A matches the value of the `Email` field of Profile B.
|
|
*
|
|
* If you choose `MANY_TO_MANY` , the system can match attributes across the sub-types of an attribute type. For example, if the value of the `Email` field of Profile A matches the value of the `BusinessEmail` field of Profile B, the two profiles are matched on the `Email` attribute type.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-idmappingrulebasedproperties.html#cfn-entityresolution-idmappingworkflow-idmappingrulebasedproperties-attributematchingmodel
|
|
*/
|
|
readonly attributeMatchingModel: string;
|
|
/**
|
|
* The type of matching record that is allowed to be used in an ID mapping workflow.
|
|
*
|
|
* If the value is set to `ONE_SOURCE_TO_ONE_TARGET` , only one record in the source can be matched to the same record in the target.
|
|
*
|
|
* If the value is set to `MANY_SOURCE_TO_ONE_TARGET` , multiple records in the source can be matched to one record in the target.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-idmappingrulebasedproperties.html#cfn-entityresolution-idmappingworkflow-idmappingrulebasedproperties-recordmatchingmodel
|
|
*/
|
|
readonly recordMatchingModel: string;
|
|
/**
|
|
* The set of rules you can use in an ID mapping workflow.
|
|
*
|
|
* The limitations specified for the source or target to define the match rules must be compatible.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-idmappingrulebasedproperties.html#cfn-entityresolution-idmappingworkflow-idmappingrulebasedproperties-ruledefinitiontype
|
|
*/
|
|
readonly ruleDefinitionType?: string;
|
|
/**
|
|
* The rules that can be used for ID mapping.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-idmappingrulebasedproperties.html#cfn-entityresolution-idmappingworkflow-idmappingrulebasedproperties-rules
|
|
*/
|
|
readonly rules?: Array<cdk.IResolvable | CfnIdMappingWorkflow.RuleProperty> | cdk.IResolvable;
|
|
}
|
|
/**
|
|
* An object containing the `ruleName` and `matchingKeys` .
|
|
*
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-rule.html
|
|
*/
|
|
interface RuleProperty {
|
|
/**
|
|
* A list of `MatchingKeys` .
|
|
*
|
|
* The `MatchingKeys` must have been defined in the `SchemaMapping` . Two records are considered to match according to this rule if all of the `MatchingKeys` match.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-rule.html#cfn-entityresolution-idmappingworkflow-rule-matchingkeys
|
|
*/
|
|
readonly matchingKeys: Array<string>;
|
|
/**
|
|
* A name for the matching rule.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-rule.html#cfn-entityresolution-idmappingworkflow-rule-rulename
|
|
*/
|
|
readonly ruleName: string;
|
|
}
|
|
/**
|
|
* An object containing the `providerServiceARN` , `intermediateSourceConfiguration` , and `providerConfiguration` .
|
|
*
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-providerproperties.html
|
|
*/
|
|
interface ProviderPropertiesProperty {
|
|
/**
|
|
* The Amazon S3 location that temporarily stores your data while it processes.
|
|
*
|
|
* Your information won't be saved permanently.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-providerproperties.html#cfn-entityresolution-idmappingworkflow-providerproperties-intermediatesourceconfiguration
|
|
*/
|
|
readonly intermediateSourceConfiguration?: CfnIdMappingWorkflow.IntermediateSourceConfigurationProperty | cdk.IResolvable;
|
|
/**
|
|
* The required configuration fields to use with the provider service.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-providerproperties.html#cfn-entityresolution-idmappingworkflow-providerproperties-providerconfiguration
|
|
*/
|
|
readonly providerConfiguration?: cdk.IResolvable | Record<string, string>;
|
|
/**
|
|
* The ARN of the provider service.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-providerproperties.html#cfn-entityresolution-idmappingworkflow-providerproperties-providerservicearn
|
|
*/
|
|
readonly providerServiceArn: string;
|
|
}
|
|
/**
|
|
* The Amazon S3 location that temporarily stores your data while it processes.
|
|
*
|
|
* Your information won't be saved permanently.
|
|
*
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-intermediatesourceconfiguration.html
|
|
*/
|
|
interface IntermediateSourceConfigurationProperty {
|
|
/**
|
|
* The Amazon S3 location (bucket and prefix).
|
|
*
|
|
* For example: `s3://provider_bucket/DOC-EXAMPLE-BUCKET`
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-intermediatesourceconfiguration.html#cfn-entityresolution-idmappingworkflow-intermediatesourceconfiguration-intermediates3path
|
|
*/
|
|
readonly intermediateS3Path: string;
|
|
}
|
|
/**
|
|
* A list of `IdMappingWorkflowOutputSource` objects, each of which contains fields `outputS3Path` and `KMSArn` .
|
|
*
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-idmappingworkflowoutputsource.html
|
|
*/
|
|
interface IdMappingWorkflowOutputSourceProperty {
|
|
/**
|
|
* Customer AWS ARN for encryption at rest.
|
|
*
|
|
* If not provided, system will use an AWS Entity Resolution managed KMS key.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-idmappingworkflowoutputsource.html#cfn-entityresolution-idmappingworkflow-idmappingworkflowoutputsource-kmsarn
|
|
*/
|
|
readonly kmsArn?: string;
|
|
/**
|
|
* The S3 path to which AWS Entity Resolution will write the output table.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-idmappingworkflowoutputsource.html#cfn-entityresolution-idmappingworkflow-idmappingworkflowoutputsource-outputs3path
|
|
*/
|
|
readonly outputS3Path: string;
|
|
}
|
|
/**
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-idmappingincrementalrunconfig.html
|
|
*/
|
|
interface IdMappingIncrementalRunConfigProperty {
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-idmappingincrementalrunconfig.html#cfn-entityresolution-idmappingworkflow-idmappingincrementalrunconfig-incrementalruntype
|
|
*/
|
|
readonly incrementalRunType: string;
|
|
}
|
|
}
|
|
/**
|
|
* Properties for defining a `CfnIdMappingWorkflow`
|
|
*
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-idmappingworkflow.html
|
|
*/
|
|
export interface CfnIdMappingWorkflowProps {
|
|
/**
|
|
* A description of the workflow.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-idmappingworkflow.html#cfn-entityresolution-idmappingworkflow-description
|
|
*/
|
|
readonly description?: string;
|
|
/**
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-idmappingworkflow.html#cfn-entityresolution-idmappingworkflow-idmappingincrementalrunconfig
|
|
*/
|
|
readonly idMappingIncrementalRunConfig?: CfnIdMappingWorkflow.IdMappingIncrementalRunConfigProperty | cdk.IResolvable;
|
|
/**
|
|
* An object which defines the ID mapping technique and any additional configurations.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-idmappingworkflow.html#cfn-entityresolution-idmappingworkflow-idmappingtechniques
|
|
*/
|
|
readonly idMappingTechniques: CfnIdMappingWorkflow.IdMappingTechniquesProperty | cdk.IResolvable;
|
|
/**
|
|
* A list of `InputSource` objects, which have the fields `InputSourceARN` and `SchemaName` .
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-idmappingworkflow.html#cfn-entityresolution-idmappingworkflow-inputsourceconfig
|
|
*/
|
|
readonly inputSourceConfig: Array<CfnIdMappingWorkflow.IdMappingWorkflowInputSourceProperty | cdk.IResolvable> | cdk.IResolvable;
|
|
/**
|
|
* A list of `IdMappingWorkflowOutputSource` objects, each of which contains fields `outputS3Path` and `KMSArn` .
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-idmappingworkflow.html#cfn-entityresolution-idmappingworkflow-outputsourceconfig
|
|
*/
|
|
readonly outputSourceConfig?: Array<CfnIdMappingWorkflow.IdMappingWorkflowOutputSourceProperty | cdk.IResolvable> | cdk.IResolvable;
|
|
/**
|
|
* The Amazon Resource Name (ARN) of the IAM role.
|
|
*
|
|
* AWS Entity Resolution assumes this role to create resources on your behalf as part of workflow execution.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-idmappingworkflow.html#cfn-entityresolution-idmappingworkflow-rolearn
|
|
*/
|
|
readonly roleArn: string;
|
|
/**
|
|
* The tags used to organize, track, or control access for this resource.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-idmappingworkflow.html#cfn-entityresolution-idmappingworkflow-tags
|
|
*/
|
|
readonly tags?: Array<cdk.CfnTag>;
|
|
/**
|
|
* The name of the workflow.
|
|
*
|
|
* There can't be multiple `IdMappingWorkflows` with the same name.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-idmappingworkflow.html#cfn-entityresolution-idmappingworkflow-workflowname
|
|
*/
|
|
readonly workflowName: string;
|
|
}
|
|
/**
|
|
* Creates an ID namespace object which will help customers provide metadata explaining their dataset and how to use it.
|
|
*
|
|
* Each ID namespace must have a unique name. To modify an existing ID namespace, use the UpdateIdNamespace API.
|
|
*
|
|
* @cloudformationResource AWS::EntityResolution::IdNamespace
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-idnamespace.html
|
|
*/
|
|
export declare class CfnIdNamespace extends cdk.CfnResource implements cdk.IInspectable, IIdNamespaceRef, cdk.ITaggableV2 {
|
|
/**
|
|
* The CloudFormation resource type name for this resource class.
|
|
*/
|
|
static readonly CFN_RESOURCE_TYPE_NAME: string;
|
|
/**
|
|
* Build a CfnIdNamespace 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): CfnIdNamespace;
|
|
/**
|
|
* Checks whether the given object is a CfnIdNamespace
|
|
*/
|
|
static isCfnIdNamespace(x: any): x is CfnIdNamespace;
|
|
/**
|
|
* Creates a new IIdNamespaceRef from an ARN
|
|
*/
|
|
static fromIdNamespaceArn(scope: constructs.Construct, id: string, arn: string): IIdNamespaceRef;
|
|
/**
|
|
* Creates a new IIdNamespaceRef from a idNamespaceName
|
|
*/
|
|
static fromIdNamespaceName(scope: constructs.Construct, id: string, idNamespaceName: string): IIdNamespaceRef;
|
|
static arnForIdNamespace(resource: IIdNamespaceRef): string;
|
|
/**
|
|
* Tag Manager which manages the tags for this resource
|
|
*/
|
|
readonly cdkTagManager: cdk.TagManager;
|
|
/**
|
|
* The description of the ID namespace.
|
|
*/
|
|
private _description?;
|
|
/**
|
|
* Determines the properties of `IdMappingWorflow` where this `IdNamespace` can be used as a `Source` or a `Target` .
|
|
*/
|
|
private _idMappingWorkflowProperties?;
|
|
/**
|
|
* The name of the ID namespace.
|
|
*/
|
|
private _idNamespaceName;
|
|
/**
|
|
* A list of `InputSource` objects, which have the fields `InputSourceARN` and `SchemaName` .
|
|
*/
|
|
private _inputSourceConfig?;
|
|
/**
|
|
* The Amazon Resource Name (ARN) of the IAM role.
|
|
*/
|
|
private _roleArn?;
|
|
/**
|
|
* The tags used to organize, track, or control access for this resource.
|
|
*/
|
|
private _tags?;
|
|
/**
|
|
* The type of ID namespace. There are two types: `SOURCE` and `TARGET` .
|
|
*/
|
|
private _type;
|
|
protected readonly cfnPropertyNames: Record<string, string>;
|
|
/**
|
|
* Create a new `AWS::EntityResolution::IdNamespace`.
|
|
*
|
|
* @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: CfnIdNamespaceProps);
|
|
get idNamespaceRef(): IdNamespaceReference;
|
|
/**
|
|
* The description of the ID namespace.
|
|
*/
|
|
get description(): string | undefined;
|
|
/**
|
|
* The description of the ID namespace.
|
|
*/
|
|
set description(value: string | undefined);
|
|
/**
|
|
* Determines the properties of `IdMappingWorflow` where this `IdNamespace` can be used as a `Source` or a `Target` .
|
|
*/
|
|
get idMappingWorkflowProperties(): Array<CfnIdNamespace.IdNamespaceIdMappingWorkflowPropertiesProperty | cdk.IResolvable> | cdk.IResolvable | undefined;
|
|
/**
|
|
* Determines the properties of `IdMappingWorflow` where this `IdNamespace` can be used as a `Source` or a `Target` .
|
|
*/
|
|
set idMappingWorkflowProperties(value: Array<CfnIdNamespace.IdNamespaceIdMappingWorkflowPropertiesProperty | cdk.IResolvable> | cdk.IResolvable | undefined);
|
|
/**
|
|
* The name of the ID namespace.
|
|
*/
|
|
get idNamespaceName(): string;
|
|
/**
|
|
* The name of the ID namespace.
|
|
*/
|
|
set idNamespaceName(value: string);
|
|
/**
|
|
* A list of `InputSource` objects, which have the fields `InputSourceARN` and `SchemaName` .
|
|
*/
|
|
get inputSourceConfig(): Array<CfnIdNamespace.IdNamespaceInputSourceProperty | cdk.IResolvable> | cdk.IResolvable | undefined;
|
|
/**
|
|
* A list of `InputSource` objects, which have the fields `InputSourceARN` and `SchemaName` .
|
|
*/
|
|
set inputSourceConfig(value: Array<CfnIdNamespace.IdNamespaceInputSourceProperty | cdk.IResolvable> | cdk.IResolvable | undefined);
|
|
/**
|
|
* The Amazon Resource Name (ARN) of the IAM role.
|
|
*/
|
|
get roleArn(): string | undefined;
|
|
/**
|
|
* The Amazon Resource Name (ARN) of the IAM role.
|
|
*/
|
|
set roleArn(value: string | undefined);
|
|
/**
|
|
* The tags used to organize, track, or control access for this resource.
|
|
*/
|
|
get tags(): Array<cdk.CfnTag> | undefined;
|
|
/**
|
|
* The tags used to organize, track, or control access for this resource.
|
|
*/
|
|
set tags(value: Array<cdk.CfnTag> | undefined);
|
|
/**
|
|
* The type of ID namespace. There are two types: `SOURCE` and `TARGET` .
|
|
*/
|
|
get type(): string;
|
|
/**
|
|
* The type of ID namespace. There are two types: `SOURCE` and `TARGET` .
|
|
*/
|
|
set type(value: string);
|
|
/**
|
|
* The date and time when the IdNamespace was created
|
|
*
|
|
* @cloudformationAttribute CreatedAt
|
|
*/
|
|
get attrCreatedAt(): string;
|
|
/**
|
|
* The arn associated with the IdNamespace
|
|
*
|
|
* @cloudformationAttribute IdNamespaceArn
|
|
*/
|
|
get attrIdNamespaceArn(): string;
|
|
/**
|
|
* The date and time when the IdNamespace was updated
|
|
*
|
|
* @cloudformationAttribute UpdatedAt
|
|
*/
|
|
get attrUpdatedAt(): string;
|
|
protected get cfnProperties(): Record<string, any>;
|
|
/**
|
|
* 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<string, any>): Record<string, any>;
|
|
}
|
|
export declare namespace CfnIdNamespace {
|
|
/**
|
|
* An object containing `inputSourceARN` and `schemaName` .
|
|
*
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idnamespace-idnamespaceinputsource.html
|
|
*/
|
|
interface IdNamespaceInputSourceProperty {
|
|
/**
|
|
* An AWS Glue table Amazon Resource Name (ARN) or a matching workflow ARN for the input source table.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idnamespace-idnamespaceinputsource.html#cfn-entityresolution-idnamespace-idnamespaceinputsource-inputsourcearn
|
|
*/
|
|
readonly inputSourceArn: string;
|
|
/**
|
|
* The name of the schema.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idnamespace-idnamespaceinputsource.html#cfn-entityresolution-idnamespace-idnamespaceinputsource-schemaname
|
|
*/
|
|
readonly schemaName?: string;
|
|
}
|
|
/**
|
|
* An object containing `idMappingType` , `providerProperties` , and `ruleBasedProperties` .
|
|
*
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idnamespace-idnamespaceidmappingworkflowproperties.html
|
|
*/
|
|
interface IdNamespaceIdMappingWorkflowPropertiesProperty {
|
|
/**
|
|
* The type of ID mapping.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idnamespace-idnamespaceidmappingworkflowproperties.html#cfn-entityresolution-idnamespace-idnamespaceidmappingworkflowproperties-idmappingtype
|
|
*/
|
|
readonly idMappingType: string;
|
|
/**
|
|
* An object which defines any additional configurations required by the provider service.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idnamespace-idnamespaceidmappingworkflowproperties.html#cfn-entityresolution-idnamespace-idnamespaceidmappingworkflowproperties-providerproperties
|
|
*/
|
|
readonly providerProperties?: cdk.IResolvable | CfnIdNamespace.NamespaceProviderPropertiesProperty;
|
|
/**
|
|
* An object which defines any additional configurations required by rule-based matching.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idnamespace-idnamespaceidmappingworkflowproperties.html#cfn-entityresolution-idnamespace-idnamespaceidmappingworkflowproperties-rulebasedproperties
|
|
*/
|
|
readonly ruleBasedProperties?: cdk.IResolvable | CfnIdNamespace.NamespaceRuleBasedPropertiesProperty;
|
|
}
|
|
/**
|
|
* The rule-based properties of an ID namespace.
|
|
*
|
|
* These properties define how the ID namespace can be used in an ID mapping workflow.
|
|
*
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idnamespace-namespacerulebasedproperties.html
|
|
*/
|
|
interface NamespaceRuleBasedPropertiesProperty {
|
|
/**
|
|
* The comparison type. You can either choose `ONE_TO_ONE` or `MANY_TO_MANY` as the `attributeMatchingModel` .
|
|
*
|
|
* If you choose `ONE_TO_ONE` , the system can only match attributes if the sub-types are an exact match. For example, for the `Email` attribute type, the system will only consider it a match if the value of the `Email` field of Profile A matches the value of the `Email` field of Profile B.
|
|
*
|
|
* If you choose `MANY_TO_MANY` , the system can match attributes across the sub-types of an attribute type. For example, if the value of the `Email` field of Profile A matches the value of `BusinessEmail` field of Profile B, the two profiles are matched on the `Email` attribute type.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idnamespace-namespacerulebasedproperties.html#cfn-entityresolution-idnamespace-namespacerulebasedproperties-attributematchingmodel
|
|
*/
|
|
readonly attributeMatchingModel?: string;
|
|
/**
|
|
* The type of matching record that is allowed to be used in an ID mapping workflow.
|
|
*
|
|
* If the value is set to `ONE_SOURCE_TO_ONE_TARGET` , only one record in the source is matched to one record in the target.
|
|
*
|
|
* If the value is set to `MANY_SOURCE_TO_ONE_TARGET` , all matching records in the source are matched to one record in the target.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idnamespace-namespacerulebasedproperties.html#cfn-entityresolution-idnamespace-namespacerulebasedproperties-recordmatchingmodels
|
|
*/
|
|
readonly recordMatchingModels?: Array<string>;
|
|
/**
|
|
* The sets of rules you can use in an ID mapping workflow.
|
|
*
|
|
* The limitations specified for the source and target must be compatible.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idnamespace-namespacerulebasedproperties.html#cfn-entityresolution-idnamespace-namespacerulebasedproperties-ruledefinitiontypes
|
|
*/
|
|
readonly ruleDefinitionTypes?: Array<string>;
|
|
/**
|
|
* The rules for the ID namespace.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idnamespace-namespacerulebasedproperties.html#cfn-entityresolution-idnamespace-namespacerulebasedproperties-rules
|
|
*/
|
|
readonly rules?: Array<cdk.IResolvable | CfnIdNamespace.RuleProperty> | cdk.IResolvable;
|
|
}
|
|
/**
|
|
* An object containing the `ruleName` and `matchingKeys` .
|
|
*
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idnamespace-rule.html
|
|
*/
|
|
interface RuleProperty {
|
|
/**
|
|
* A list of `MatchingKeys` .
|
|
*
|
|
* The `MatchingKeys` must have been defined in the `SchemaMapping` . Two records are considered to match according to this rule if all of the `MatchingKeys` match.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idnamespace-rule.html#cfn-entityresolution-idnamespace-rule-matchingkeys
|
|
*/
|
|
readonly matchingKeys: Array<string>;
|
|
/**
|
|
* A name for the matching rule.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idnamespace-rule.html#cfn-entityresolution-idnamespace-rule-rulename
|
|
*/
|
|
readonly ruleName: string;
|
|
}
|
|
/**
|
|
* An object containing `providerConfiguration` and `providerServiceArn` .
|
|
*
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idnamespace-namespaceproviderproperties.html
|
|
*/
|
|
interface NamespaceProviderPropertiesProperty {
|
|
/**
|
|
* An object which defines any additional configurations required by the provider service.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idnamespace-namespaceproviderproperties.html#cfn-entityresolution-idnamespace-namespaceproviderproperties-providerconfiguration
|
|
*/
|
|
readonly providerConfiguration?: cdk.IResolvable | Record<string, string>;
|
|
/**
|
|
* The Amazon Resource Name (ARN) of the provider service.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idnamespace-namespaceproviderproperties.html#cfn-entityresolution-idnamespace-namespaceproviderproperties-providerservicearn
|
|
*/
|
|
readonly providerServiceArn: string;
|
|
}
|
|
}
|
|
/**
|
|
* Properties for defining a `CfnIdNamespace`
|
|
*
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-idnamespace.html
|
|
*/
|
|
export interface CfnIdNamespaceProps {
|
|
/**
|
|
* The description of the ID namespace.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-idnamespace.html#cfn-entityresolution-idnamespace-description
|
|
*/
|
|
readonly description?: string;
|
|
/**
|
|
* Determines the properties of `IdMappingWorflow` where this `IdNamespace` can be used as a `Source` or a `Target` .
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-idnamespace.html#cfn-entityresolution-idnamespace-idmappingworkflowproperties
|
|
*/
|
|
readonly idMappingWorkflowProperties?: Array<CfnIdNamespace.IdNamespaceIdMappingWorkflowPropertiesProperty | cdk.IResolvable> | cdk.IResolvable;
|
|
/**
|
|
* The name of the ID namespace.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-idnamespace.html#cfn-entityresolution-idnamespace-idnamespacename
|
|
*/
|
|
readonly idNamespaceName: string;
|
|
/**
|
|
* A list of `InputSource` objects, which have the fields `InputSourceARN` and `SchemaName` .
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-idnamespace.html#cfn-entityresolution-idnamespace-inputsourceconfig
|
|
*/
|
|
readonly inputSourceConfig?: Array<CfnIdNamespace.IdNamespaceInputSourceProperty | cdk.IResolvable> | cdk.IResolvable;
|
|
/**
|
|
* The Amazon Resource Name (ARN) of the IAM role.
|
|
*
|
|
* AWS Entity Resolution assumes this role to access the resources defined in this `IdNamespace` on your behalf as part of the workflow run.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-idnamespace.html#cfn-entityresolution-idnamespace-rolearn
|
|
*/
|
|
readonly roleArn?: string;
|
|
/**
|
|
* The tags used to organize, track, or control access for this resource.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-idnamespace.html#cfn-entityresolution-idnamespace-tags
|
|
*/
|
|
readonly tags?: Array<cdk.CfnTag>;
|
|
/**
|
|
* The type of ID namespace. There are two types: `SOURCE` and `TARGET` .
|
|
*
|
|
* The `SOURCE` contains configurations for `sourceId` data that will be processed in an ID mapping workflow.
|
|
*
|
|
* The `TARGET` contains a configuration of `targetId` which all `sourceIds` will resolve to.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-idnamespace.html#cfn-entityresolution-idnamespace-type
|
|
*/
|
|
readonly type: string;
|
|
}
|
|
/**
|
|
* Adds a policy statement object.
|
|
*
|
|
* To retrieve a list of existing policy statements, use the `GetPolicy` API.
|
|
*
|
|
* @cloudformationResource AWS::EntityResolution::PolicyStatement
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-policystatement.html
|
|
*/
|
|
export declare class CfnPolicyStatement extends cdk.CfnResource implements cdk.IInspectable, IPolicyStatementRef {
|
|
/**
|
|
* The CloudFormation resource type name for this resource class.
|
|
*/
|
|
static readonly CFN_RESOURCE_TYPE_NAME: string;
|
|
/**
|
|
* Build a CfnPolicyStatement 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): CfnPolicyStatement;
|
|
/**
|
|
* Checks whether the given object is a CfnPolicyStatement
|
|
*/
|
|
static isCfnPolicyStatement(x: any): x is CfnPolicyStatement;
|
|
/**
|
|
* The action that the principal can use on the resource.
|
|
*/
|
|
private _action?;
|
|
/**
|
|
* The Amazon Resource Name (ARN) of the resource that will be accessed by the principal.
|
|
*/
|
|
private _arn;
|
|
/**
|
|
* A set of condition keys that you can use in key policies.
|
|
*/
|
|
private _condition?;
|
|
/**
|
|
* Determines whether the permissions specified in the policy are to be allowed ( `Allow` ) or denied ( `Deny` ).
|
|
*/
|
|
private _effect?;
|
|
/**
|
|
* The AWS service or AWS account that can access the resource defined as ARN.
|
|
*/
|
|
private _principal?;
|
|
/**
|
|
* A statement identifier that differentiates the statement from others in the same policy.
|
|
*/
|
|
private _statementId;
|
|
protected readonly cfnPropertyNames: Record<string, string>;
|
|
/**
|
|
* Create a new `AWS::EntityResolution::PolicyStatement`.
|
|
*
|
|
* @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: CfnPolicyStatementProps);
|
|
get policyStatementRef(): PolicyStatementReference;
|
|
/**
|
|
* The action that the principal can use on the resource.
|
|
*/
|
|
get action(): Array<string> | undefined;
|
|
/**
|
|
* The action that the principal can use on the resource.
|
|
*/
|
|
set action(value: Array<string> | undefined);
|
|
/**
|
|
* The Amazon Resource Name (ARN) of the resource that will be accessed by the principal.
|
|
*/
|
|
get arn(): string;
|
|
/**
|
|
* The Amazon Resource Name (ARN) of the resource that will be accessed by the principal.
|
|
*/
|
|
set arn(value: string);
|
|
/**
|
|
* A set of condition keys that you can use in key policies.
|
|
*/
|
|
get condition(): string | undefined;
|
|
/**
|
|
* A set of condition keys that you can use in key policies.
|
|
*/
|
|
set condition(value: string | undefined);
|
|
/**
|
|
* Determines whether the permissions specified in the policy are to be allowed ( `Allow` ) or denied ( `Deny` ).
|
|
*/
|
|
get effect(): string | undefined;
|
|
/**
|
|
* Determines whether the permissions specified in the policy are to be allowed ( `Allow` ) or denied ( `Deny` ).
|
|
*/
|
|
set effect(value: string | undefined);
|
|
/**
|
|
* The AWS service or AWS account that can access the resource defined as ARN.
|
|
*/
|
|
get principal(): Array<string> | undefined;
|
|
/**
|
|
* The AWS service or AWS account that can access the resource defined as ARN.
|
|
*/
|
|
set principal(value: Array<string> | undefined);
|
|
/**
|
|
* A statement identifier that differentiates the statement from others in the same policy.
|
|
*/
|
|
get statementId(): string;
|
|
/**
|
|
* A statement identifier that differentiates the statement from others in the same policy.
|
|
*/
|
|
set statementId(value: string);
|
|
protected get cfnProperties(): Record<string, any>;
|
|
/**
|
|
* 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<string, any>): Record<string, any>;
|
|
}
|
|
/**
|
|
* Properties for defining a `CfnPolicyStatement`
|
|
*
|
|
* @struct
|
|
* @stability external
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-policystatement.html
|
|
*/
|
|
export interface CfnPolicyStatementProps {
|
|
/**
|
|
* The action that the principal can use on the resource.
|
|
*
|
|
* For example, `entityresolution:GetIdMappingJob` , `entityresolution:GetMatchingJob` .
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-policystatement.html#cfn-entityresolution-policystatement-action
|
|
*/
|
|
readonly action?: Array<string>;
|
|
/**
|
|
* The Amazon Resource Name (ARN) of the resource that will be accessed by the principal.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-policystatement.html#cfn-entityresolution-policystatement-arn
|
|
*/
|
|
readonly arn: string;
|
|
/**
|
|
* A set of condition keys that you can use in key policies.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-policystatement.html#cfn-entityresolution-policystatement-condition
|
|
*/
|
|
readonly condition?: string;
|
|
/**
|
|
* Determines whether the permissions specified in the policy are to be allowed ( `Allow` ) or denied ( `Deny` ).
|
|
*
|
|
* > If you set the value of the `effect` parameter to `Deny` for the `AddPolicyStatement` operation, you must also set the value of the `effect` parameter in the `policy` to `Deny` for the `PutPolicy` operation.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-policystatement.html#cfn-entityresolution-policystatement-effect
|
|
*/
|
|
readonly effect?: string;
|
|
/**
|
|
* The AWS service or AWS account that can access the resource defined as ARN.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-policystatement.html#cfn-entityresolution-policystatement-principal
|
|
*/
|
|
readonly principal?: Array<string>;
|
|
/**
|
|
* A statement identifier that differentiates the statement from others in the same policy.
|
|
*
|
|
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-policystatement.html#cfn-entityresolution-policystatement-statementid
|
|
*/
|
|
readonly statementId: string;
|
|
}
|
|
export type { IMatchingWorkflowRef, MatchingWorkflowReference };
|
|
export type { ISchemaMappingRef, SchemaMappingReference };
|
|
export type { IIdMappingWorkflowRef, IdMappingWorkflowReference };
|
|
export type { IIdNamespaceRef, IdNamespaceReference };
|
|
export type { IPolicyStatementRef, PolicyStatementReference };
|