import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Resource schema for AWS::MediaConnect::FlowEntitlement */ export declare class FlowEntitlement extends pulumi.CustomResource { /** * Get an existing FlowEntitlement resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): FlowEntitlement; /** * Returns true if the given object is an instance of FlowEntitlement. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is FlowEntitlement; /** * Percentage from 0-100 of the data transfer cost to be billed to the subscriber. */ readonly dataTransferSubscriberFeePercent: pulumi.Output; /** * A description of the entitlement. */ readonly description: pulumi.Output; /** * The type of encryption that will be used on the output that is associated with this entitlement. */ readonly encryption: pulumi.Output; /** * The ARN of the entitlement. */ readonly entitlementArn: pulumi.Output; /** * An indication of whether the entitlement is enabled. */ readonly entitlementStatus: pulumi.Output; /** * The ARN of the flow. */ readonly flowArn: pulumi.Output; /** * The name of the entitlement. */ readonly name: pulumi.Output; /** * The AWS account IDs that you want to share your content with. The receiving accounts (subscribers) will be allowed to create their own flow using your content as the source. */ readonly subscribers: pulumi.Output; /** * Key-value pairs that can be used to tag and organize this flow entitlement. */ readonly tags: pulumi.Output; /** * Create a FlowEntitlement resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: FlowEntitlementArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a FlowEntitlement resource. */ export interface FlowEntitlementArgs { /** * Percentage from 0-100 of the data transfer cost to be billed to the subscriber. */ dataTransferSubscriberFeePercent?: pulumi.Input; /** * A description of the entitlement. */ description: pulumi.Input; /** * The type of encryption that will be used on the output that is associated with this entitlement. */ encryption?: pulumi.Input; /** * An indication of whether the entitlement is enabled. */ entitlementStatus?: pulumi.Input; /** * The ARN of the flow. */ flowArn: pulumi.Input; /** * The name of the entitlement. */ name?: pulumi.Input; /** * The AWS account IDs that you want to share your content with. The receiving accounts (subscribers) will be allowed to create their own flow using your content as the source. */ subscribers: pulumi.Input[]>; /** * Key-value pairs that can be used to tag and organize this flow entitlement. */ tags?: pulumi.Input[]>; }