@pulumi/aws-native
Version:
The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)
66 lines (65 loc) • 2.44 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
* IdNamespace defined in AWS Entity Resolution service
*/
export declare function getIdNamespace(args: GetIdNamespaceArgs, opts?: pulumi.InvokeOptions): Promise<GetIdNamespaceResult>;
export interface GetIdNamespaceArgs {
/**
* The name of the ID namespace.
*/
idNamespaceName: string;
}
export interface GetIdNamespaceResult {
/**
* The date and time when the IdNamespace was created
*/
readonly createdAt?: string;
/**
* The description of the ID namespace.
*/
readonly description?: string;
/**
* Determines the properties of `IdMappingWorflow` where this `IdNamespace` can be used as a `Source` or a `Target` .
*/
readonly idMappingWorkflowProperties?: outputs.entityresolution.IdNamespaceIdMappingWorkflowProperties[];
/**
* The arn associated with the IdNamespace
*/
readonly idNamespaceArn?: string;
/**
* A list of `InputSource` objects, which have the fields `InputSourceARN` and `SchemaName` .
*/
readonly inputSourceConfig?: outputs.entityresolution.IdNamespaceInputSource[];
/**
* 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.
*/
readonly roleArn?: string;
/**
* The tags used to organize, track, or control access for this resource.
*/
readonly tags?: outputs.Tag[];
/**
* 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.
*/
readonly type?: enums.entityresolution.IdNamespaceType;
/**
* The date and time when the IdNamespace was updated
*/
readonly updatedAt?: string;
}
/**
* IdNamespace defined in AWS Entity Resolution service
*/
export declare function getIdNamespaceOutput(args: GetIdNamespaceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetIdNamespaceResult>;
export interface GetIdNamespaceOutputArgs {
/**
* The name of the ID namespace.
*/
idNamespaceName: pulumi.Input<string>;
}