aws-cdk-lib.aws_codebuild.UntrustedCodeBoundaryPolicyProps

interface UntrustedCodeBoundaryPolicyProps

LanguageType name
.NETAmazon.CDK.AWS.CodeBuild.UntrustedCodeBoundaryPolicyProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscodebuild#UntrustedCodeBoundaryPolicyProps
Javasoftware.amazon.awscdk.services.codebuild.UntrustedCodeBoundaryPolicyProps
Pythonaws_cdk.aws_codebuild.UntrustedCodeBoundaryPolicyProps
TypeScript (source)aws-cdk-lib » aws_codebuild » UntrustedCodeBoundaryPolicyProps

Construction properties for UntrustedCodeBoundaryPolicy.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_codebuild as codebuild } from 'aws-cdk-lib';
import { aws_iam as iam } from 'aws-cdk-lib';

declare const policyStatement: iam.PolicyStatement;
const untrustedCodeBoundaryPolicyProps: codebuild.UntrustedCodeBoundaryPolicyProps = {
  additionalStatements: [policyStatement],
  managedPolicyName: 'managedPolicyName',
};

Properties

NameTypeDescription
additionalStatements?PolicyStatement[]Additional statements to add to the default set of statements.
managedPolicyName?stringThe name of the managed policy.

additionalStatements?

Type: PolicyStatement[] (optional, default: No additional statements)

Additional statements to add to the default set of statements.


managedPolicyName?

Type: string (optional, default: A name is automatically generated.)

The name of the managed policy.