UNPKG

cdk-iam-floyd

Version:

AWS IAM policy statement generator with fluent interface for AWS CDK

443 lines (442 loc) 17.3 kB
import { AccessLevelList } from '../../shared/access-level'; import { PolicyStatement, Operator } from '../../shared'; import { aws_iam as iam } from "aws-cdk-lib"; /** * Statement provider for service [greengrass-v2](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiotgreengrassv2.html). * * @param sid [SID](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_sid.html) of the statement */ export declare class GreengrassV2 extends PolicyStatement { servicePrefix: string; /** * Grants permission to associate a role with your account. AWS IoT Greengrass uses this role to access your Lambda functions and AWS IoT resources * * Access Level: Permissions management * * Dependent actions: * - iam:PassRole * * https://docs.aws.amazon.com/greengrass/v2/APIReference/API_AssociateServiceRoleToAccount.html */ toAssociateServiceRoleToAccount(): this; /** * Grants permission to associate a list of client devices with a core device * * Access Level: Write * * https://docs.aws.amazon.com/greengrass/v2/APIReference/API_BatchAssociateClientDeviceWithCoreDevice.html */ toBatchAssociateClientDeviceWithCoreDevice(): this; /** * Grants permission to disassociate a list of client devices from a core device * * Access Level: Write * * https://docs.aws.amazon.com/greengrass/v2/APIReference/API_BatchDisassociateClientDeviceFromCoreDevice.html */ toBatchDisassociateClientDeviceFromCoreDevice(): this; /** * Grants permission to cancel a deployment * * Access Level: Write * * Dependent actions: * - iot:CancelJob * - iot:DeleteThingShadow * - iot:DescribeJob * - iot:DescribeThing * - iot:DescribeThingGroup * - iot:GetThingShadow * - iot:UpdateJob * - iot:UpdateThingShadow * * https://docs.aws.amazon.com/greengrass/v2/APIReference/API_CancelDeployment.html */ toCancelDeployment(): this; /** * Grants permission to create a component * * Access Level: Write * * Possible conditions: * - .ifAwsRequestTag() * - .ifAwsTagKeys() * * https://docs.aws.amazon.com/greengrass/v2/APIReference/API_CreateComponentVersion.html */ toCreateComponentVersion(): this; /** * Grants permission to create a deployment * * Access Level: Write * * Possible conditions: * - .ifAwsRequestTag() * - .ifAwsTagKeys() * * Dependent actions: * - iot:CancelJob * - iot:CreateJob * - iot:DeleteThingShadow * - iot:DescribeJob * - iot:DescribeThing * - iot:DescribeThingGroup * - iot:GetThingShadow * - iot:UpdateJob * - iot:UpdateThingShadow * * https://docs.aws.amazon.com/greengrass/v2/APIReference/API_CreateDeployment.html */ toCreateDeployment(): this; /** * Grants permission to delete a component * * Access Level: Write * * https://docs.aws.amazon.com/greengrass/v2/APIReference/API_DeleteComponent.html */ toDeleteComponent(): this; /** * Grants permission to delete a AWS IoT Greengrass core device, which is an AWS IoT thing. This operation removes the core device from the list of core devices. This operation doesn't delete the AWS IoT thing * * Access Level: Write * * Dependent actions: * - iot:DescribeJobExecution * * https://docs.aws.amazon.com/greengrass/v2/APIReference/API_DeleteCoreDevice.html */ toDeleteCoreDevice(): this; /** * Grants permission to delete a deployment. To delete an active deployment, it needs to be cancelled first * * Access Level: Write * * Dependent actions: * - iot:DeleteJob * * https://docs.aws.amazon.com/greengrass/v2/APIReference/API_DeleteDeployment.html */ toDeleteDeployment(): this; /** * Grants permission to retrieve metadata for a version of a component * * Access Level: Read * * https://docs.aws.amazon.com/greengrass/v2/APIReference/API_DescribeComponent.html */ toDescribeComponent(): this; /** * Grants permission to disassociate the service role from an account. Without a service role, deployments will not work * * Access Level: Write * * https://docs.aws.amazon.com/greengrass/v2/APIReference/API_DisassociateServiceRoleFromAccount.html */ toDisassociateServiceRoleFromAccount(): this; /** * Grants permission to get the recipe for a version of a component * * Access Level: Read * * https://docs.aws.amazon.com/greengrass/v2/APIReference/API_GetComponent.html */ toGetComponent(): this; /** * Grants permission to get the pre-signed URL to download a public component artifact * * Access Level: Read * * https://docs.aws.amazon.com/greengrass/v2/APIReference/API_GetComponentVersionArtifact.html */ toGetComponentVersionArtifact(): this; /** * Grants permission to retrieve the connectivity information for a Greengrass core device * * Access Level: Read * * Dependent actions: * - iot:GetThingShadow * * https://docs.aws.amazon.com/greengrass/v2/APIReference/API_GetConnectivityInfo.html */ toGetConnectivityInfo(): this; /** * Grants permission to retrieves metadata for a AWS IoT Greengrass core device * * Access Level: Read * * https://docs.aws.amazon.com/greengrass/v2/APIReference/API_GetCoreDevice.html */ toGetCoreDevice(): this; /** * Grants permission to get a deployment * * Access Level: Read * * Dependent actions: * - iot:DescribeJob * - iot:DescribeThing * - iot:DescribeThingGroup * - iot:GetThingShadow * * https://docs.aws.amazon.com/greengrass/v2/APIReference/API_GetDeployment.html */ toGetDeployment(): this; /** * Grants permission to retrieve the service role that is attached to an account * * Access Level: Read * * https://docs.aws.amazon.com/greengrass/v2/APIReference/API_GetServiceRoleForAccount.html */ toGetServiceRoleForAccount(): this; /** * Grants permission to retrieve a paginated list of client devices associated to a AWS IoT Greengrass core device * * Access Level: List * * https://docs.aws.amazon.com/greengrass/v2/APIReference/API_ListClientDevicesAssociatedWithCoreDevice.html */ toListClientDevicesAssociatedWithCoreDevice(): this; /** * Grants permission to retrieve a paginated list of all versions for a component * * Access Level: List * * https://docs.aws.amazon.com/greengrass/v2/APIReference/API_ListComponentVersions.html */ toListComponentVersions(): this; /** * Grants permission to retrieve a paginated list of component summaries * * Access Level: List * * https://docs.aws.amazon.com/greengrass/v2/APIReference/API_ListComponents.html */ toListComponents(): this; /** * Grants permission to retrieve a paginated list of AWS IoT Greengrass core devices * * Access Level: List * * https://docs.aws.amazon.com/greengrass/v2/APIReference/API_ListCoreDevices.html */ toListCoreDevices(): this; /** * Grants permission to retrieves a paginated list of deployments * * Access Level: List * * Dependent actions: * - iot:DescribeJob * - iot:DescribeThing * - iot:DescribeThingGroup * - iot:GetThingShadow * * https://docs.aws.amazon.com/greengrass/v2/APIReference/API_ListDeployments.html */ toListDeployments(): this; /** * Grants permission to retrieves a paginated list of deployment jobs that AWS IoT Greengrass sends to AWS IoT Greengrass core devices * * Access Level: List * * Dependent actions: * - iot:DescribeJob * - iot:DescribeJobExecution * - iot:DescribeThing * - iot:DescribeThingGroup * - iot:GetThingShadow * * https://docs.aws.amazon.com/greengrass/v2/APIReference/API_ListEffectiveDeployments.html */ toListEffectiveDeployments(): this; /** * Grants permission to retrieve a paginated list of the components that a AWS IoT Greengrass core device runs * * Access Level: List * * https://docs.aws.amazon.com/greengrass/v2/APIReference/API_ListInstalledComponents.html */ toListInstalledComponents(): this; /** * Grants permission to list the tags for a resource * * Access Level: Read * * Possible conditions: * - .ifAwsRequestTag() * - .ifAwsTagKeys() * * https://docs.aws.amazon.com/greengrass/v2/APIReference/API_ListTagsForResource.html */ toListTagsForResource(): this; /** * Grants permission to list components that meet the component, version, and platform requirements of a deployment * * Access Level: List * * https://docs.aws.amazon.com/greengrass/v2/APIReference/API_ResolveComponentCandidates.html */ toResolveComponentCandidates(): this; /** * Grants permission to add tags to a resource * * Access Level: Tagging * * Possible conditions: * - .ifAwsRequestTag() * - .ifAwsTagKeys() * * https://docs.aws.amazon.com/greengrass/v2/APIReference/API_TagResource.html */ toTagResource(): this; /** * Grants permission to remove tags from a resource * * Access Level: Tagging * * Possible conditions: * - .ifAwsRequestTag() * - .ifAwsTagKeys() * * https://docs.aws.amazon.com/greengrass/v2/APIReference/API_UntagResource.html */ toUntagResource(): this; /** * Grants permission to update the connectivity information for a Greengrass core. Any devices that belong to the group that has this core will receive this information in order to find the location of the core and connect to it * * Access Level: Write * * Dependent actions: * - iot:GetThingShadow * - iot:UpdateThingShadow * * https://docs.aws.amazon.com/greengrass/v2/APIReference/API_UpdateConnectivityInfo.html */ toUpdateConnectivityInfo(): this; protected accessLevelList: AccessLevelList; /** * Adds a resource of type connectivityInfo to the statement * * https://docs.aws.amazon.com/greengrass/v2/APIReference/API_ConnectivityInfo.html * * @param thingName - Identifier for the thingName. * @param account - Account of the resource; defaults to `*`, unless using the CDK, where the default is the current Stack's account. * @param region - Region of the resource; defaults to `*`, unless using the CDK, where the default is the current Stack's region. * @param partition - Partition of the AWS account [aws, aws-cn, aws-us-gov]; defaults to `aws`, unless using the CDK, where the default is the current Stack's partition. */ onConnectivityInfo(thingName: string, account?: string, region?: string, partition?: string): this; /** * Adds a resource of type component to the statement * * https://docs.aws.amazon.com/greengrass/v2/APIReference/API_Component.html * * @param componentName - Identifier for the componentName. * @param account - Account of the resource; defaults to `*`, unless using the CDK, where the default is the current Stack's account. * @param region - Region of the resource; defaults to `*`, unless using the CDK, where the default is the current Stack's region. * @param partition - Partition of the AWS account [aws, aws-cn, aws-us-gov]; defaults to `aws`, unless using the CDK, where the default is the current Stack's partition. * * Possible conditions: * - .ifAwsResourceTag() */ onComponent(componentName: string, account?: string, region?: string, partition?: string): this; /** * Adds a resource of type componentVersion to the statement * * https://docs.aws.amazon.com/greengrass/v2/APIReference/API_Component.html * * @param componentName - Identifier for the componentName. * @param componentVersion - Identifier for the componentVersion. * @param account - Account of the resource; defaults to `*`, unless using the CDK, where the default is the current Stack's account. * @param region - Region of the resource; defaults to `*`, unless using the CDK, where the default is the current Stack's region. * @param partition - Partition of the AWS account [aws, aws-cn, aws-us-gov]; defaults to `aws`, unless using the CDK, where the default is the current Stack's partition. * * Possible conditions: * - .ifAwsResourceTag() */ onComponentVersion(componentName: string, componentVersion: string, account?: string, region?: string, partition?: string): this; /** * Adds a resource of type coreDevice to the statement * * https://docs.aws.amazon.com/greengrass/v2/APIReference/API_CoreDevice.html * * @param coreDeviceThingName - Identifier for the coreDeviceThingName. * @param account - Account of the resource; defaults to `*`, unless using the CDK, where the default is the current Stack's account. * @param region - Region of the resource; defaults to `*`, unless using the CDK, where the default is the current Stack's region. * @param partition - Partition of the AWS account [aws, aws-cn, aws-us-gov]; defaults to `aws`, unless using the CDK, where the default is the current Stack's partition. * * Possible conditions: * - .ifAwsResourceTag() */ onCoreDevice(coreDeviceThingName: string, account?: string, region?: string, partition?: string): this; /** * Adds a resource of type deployment to the statement * * https://docs.aws.amazon.com/greengrass/v2/APIReference/API_Deployment.html * * @param deploymentId - Identifier for the deploymentId. * @param account - Account of the resource; defaults to `*`, unless using the CDK, where the default is the current Stack's account. * @param region - Region of the resource; defaults to `*`, unless using the CDK, where the default is the current Stack's region. * @param partition - Partition of the AWS account [aws, aws-cn, aws-us-gov]; defaults to `aws`, unless using the CDK, where the default is the current Stack's partition. * * Possible conditions: * - .ifAwsResourceTag() */ onDeployment(deploymentId: string, account?: string, region?: string, partition?: string): this; /** * Filters access by checking tag key/value pairs included in the request * * https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_condition-keys.html#condition-keys-requesttag * * Applies to actions: * - .toCreateComponentVersion() * - .toCreateDeployment() * - .toListTagsForResource() * - .toTagResource() * - .toUntagResource() * * @param tagKey The tag key to check * @param value The value(s) to check * @param operator Works with [string operators](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_condition_operators.html#Conditions_String). **Default:** `StringLike` */ ifAwsRequestTag(tagKey: string, value: string | string[], operator?: Operator | string): this; /** * Filters access by checking tag key/value pairs associated with a specific resource * * https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_condition-keys.html#condition-keys-resourcetag * * Applies to resource types: * - component * - componentVersion * - coreDevice * - deployment * * @param tagKey The tag key to check * @param value The value(s) to check * @param operator Works with [string operators](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_condition_operators.html#Conditions_String). **Default:** `StringLike` */ ifAwsResourceTag(tagKey: string, value: string | string[], operator?: Operator | string): this; /** * Filters access by checking tag keys passed in the request * * https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_condition-keys.html#condition-keys-tagkeys * * Applies to actions: * - .toCreateComponentVersion() * - .toCreateDeployment() * - .toListTagsForResource() * - .toTagResource() * - .toUntagResource() * * @param value The value(s) to check * @param operator Works with [string operators](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_condition_operators.html#Conditions_String). **Default:** `StringLike` */ ifAwsTagKeys(value: string | string[], operator?: Operator | string): this; /** * Statement provider for service [greengrass-v2](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiotgreengrassv2.html). * */ constructor(props?: iam.PolicyStatementProps); }