interface UntrustedCodeBoundaryPolicyProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.CodeBuild.UntrustedCodeBoundaryPolicyProps |
Java | software.amazon.awscdk.services.codebuild.UntrustedCodeBoundaryPolicyProps |
Python | aws_cdk.aws_codebuild.UntrustedCodeBoundaryPolicyProps |
TypeScript (source) | @aws-cdk/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 * as codebuild from '@aws-cdk/aws-codebuild';
import * as iam from '@aws-cdk/aws-iam';
declare const policyStatement: iam.PolicyStatement;
const untrustedCodeBoundaryPolicyProps: codebuild.UntrustedCodeBoundaryPolicyProps = {
additionalStatements: [policyStatement],
managedPolicyName: 'managedPolicyName',
};
Properties
Name | Type | Description |
---|---|---|
additional | Policy [] | Additional statements to add to the default set of statements. |
managed | string | The name of the managed policy. |
additionalStatements?
Type:
Policy
[]
(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.