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 Type definition for AWS::SecurityAgent::SecurityRequirementPack */ export declare class SecurityRequirementPack extends pulumi.CustomResource { /** * Get an existing SecurityRequirementPack 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): SecurityRequirementPack; /** * Returns true if the given object is an instance of SecurityRequirementPack. 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 SecurityRequirementPack; /** * Description of the pack */ readonly description: pulumi.Output; /** * KMS key for client-side encryption of pack contents */ readonly kmsKeyId: pulumi.Output; /** * Name of the security requirement pack */ readonly name: pulumi.Output; /** * Unique identifier of the security requirement pack */ readonly packId: pulumi.Output; /** * Security requirements within this pack */ readonly securityRequirements: pulumi.Output; /** * Whether the pack is enabled or disabled */ readonly status: pulumi.Output; /** * Tags for the security requirement pack */ readonly tags: pulumi.Output; /** * Create a SecurityRequirementPack 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?: SecurityRequirementPackArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a SecurityRequirementPack resource. */ export interface SecurityRequirementPackArgs { /** * Description of the pack */ description?: pulumi.Input; /** * KMS key for client-side encryption of pack contents */ kmsKeyId?: pulumi.Input; /** * Name of the security requirement pack */ name?: pulumi.Input; /** * Security requirements within this pack */ securityRequirements?: pulumi.Input[]>; /** * Whether the pack is enabled or disabled */ status?: pulumi.Input; /** * Tags for the security requirement pack */ tags?: pulumi.Input[]>; }