interface DockerServerProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodeBuild.Mixins.CfnProjectPropsMixin.DockerServerProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodebuild/mixins#CfnProjectPropsMixin_DockerServerProperty |
Java | software.amazon.awscdk.mixins.preview.services.codebuild.mixins.CfnProjectPropsMixin.DockerServerProperty |
Python | aws_cdk.mixins_preview.aws_codebuild.mixins.CfnProjectPropsMixin.DockerServerProperty |
TypeScript | @aws-cdk/mixins-preview » aws_codebuild » mixins » CfnProjectPropsMixin » DockerServerProperty |
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 dockerServerProperty: codebuild_mixins.CfnProjectPropsMixin.DockerServerProperty = {
computeType: 'computeType',
securityGroupIds: ['securityGroupIds'],
};
Properties
| Name | Type | Description |
|---|---|---|
| compute | string | |
| security | string[] |
computeType?
Type:
string
(optional)
securityGroupIds?
Type:
string[]
(optional)

.NET
Go
Java
Python
TypeScript