Show / Hide Table of Contents

Interface IUntrustedCodeBoundaryPolicyProps

Construction properties for UntrustedCodeBoundaryPolicy.

Namespace: Amazon.CDK.AWS.CodeBuild
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IUntrustedCodeBoundaryPolicyProps
Syntax (vb)
Public Interface IUntrustedCodeBoundaryPolicyProps
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.AWS.CodeBuild;
            using Amazon.CDK.AWS.IAM;

            PolicyStatement policyStatement;

            var untrustedCodeBoundaryPolicyProps = new UntrustedCodeBoundaryPolicyProps {
                AdditionalStatements = new [] { policyStatement },
                ManagedPolicyName = "managedPolicyName"
            };

Synopsis

Properties

AdditionalStatements

Additional statements to add to the default set of statements.

ManagedPolicyName

The name of the managed policy.

Properties

AdditionalStatements

Additional statements to add to the default set of statements.

PolicyStatement[]? AdditionalStatements { get; }
Property Value

PolicyStatement[]

Remarks

Default: - No additional statements

ManagedPolicyName

The name of the managed policy.

string? ManagedPolicyName { get; }
Property Value

string

Remarks

Default: - A name is automatically generated.

Back to top Generated by DocFX