interface ProxyConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodeBuild.Mixins.CfnFleetPropsMixin.ProxyConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodebuild/mixins#CfnFleetPropsMixin_ProxyConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.codebuild.mixins.CfnFleetPropsMixin.ProxyConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_codebuild.mixins.CfnFleetPropsMixin.ProxyConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_codebuild » mixins » CfnFleetPropsMixin » ProxyConfigurationProperty |
Information about the proxy configurations that apply network access control to your reserved capacity instances.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as codebuild_mixins } from '@aws-cdk/mixins-preview/aws-codebuild';
const proxyConfigurationProperty: codebuild_mixins.CfnFleetPropsMixin.ProxyConfigurationProperty = {
defaultBehavior: 'defaultBehavior',
orderedProxyRules: [{
effect: 'effect',
entities: ['entities'],
type: 'type',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| default | string | The default behavior of outgoing traffic. |
| ordered | IResolvable | (IResolvable | Fleet)[] | An array of FleetProxyRule objects that represent the specified destination domains or IPs to allow or deny network access control to. |
defaultBehavior?
Type:
string
(optional)
The default behavior of outgoing traffic.
orderedProxyRules?
Type:
IResolvable | (IResolvable | Fleet)[]
(optional)
An array of FleetProxyRule objects that represent the specified destination domains or IPs to allow or deny network access control to.

.NET
Go
Java
Python
TypeScript