interface FleetProxyRuleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodeBuild.Mixins.CfnFleetPropsMixin.FleetProxyRuleProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodebuild/mixins#CfnFleetPropsMixin_FleetProxyRuleProperty |
Java | software.amazon.awscdk.mixins.preview.services.codebuild.mixins.CfnFleetPropsMixin.FleetProxyRuleProperty |
Python | aws_cdk.mixins_preview.aws_codebuild.mixins.CfnFleetPropsMixin.FleetProxyRuleProperty |
TypeScript | @aws-cdk/mixins-preview » aws_codebuild » mixins » CfnFleetPropsMixin » FleetProxyRuleProperty |
Information about the proxy rule for 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 fleetProxyRuleProperty: codebuild_mixins.CfnFleetPropsMixin.FleetProxyRuleProperty = {
effect: 'effect',
entities: ['entities'],
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| effect? | string | The behavior of the proxy rule. |
| entities? | string[] | The destination of the proxy rule. |
| type? | string | The type of proxy rule. |
effect?
Type:
string
(optional)
The behavior of the proxy rule.
entities?
Type:
string[]
(optional)
The destination of the proxy rule.
type?
Type:
string
(optional)
The type of proxy rule.

.NET
Go
Java
Python
TypeScript