interface Source1
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodeBuild.Events.AWSAPICallViaCloudTrail.Source1 |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodebuild/events#AWSAPICallViaCloudTrail_Source1 |
Java | software.amazon.awscdk.mixins.preview.services.codebuild.events.AWSAPICallViaCloudTrail.Source1 |
Python | aws_cdk.mixins_preview.aws_codebuild.events.AWSAPICallViaCloudTrail.Source1 |
TypeScript | @aws-cdk/mixins-preview ยป aws_codebuild ยป events ยป AWSAPICallViaCloudTrail ยป Source1 |
Type definition for Source_1.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as codebuild_events } from '@aws-cdk/mixins-preview/aws-codebuild';
const source1: codebuild_events.AWSAPICallViaCloudTrail.Source1 = {
auth: {
type: ['type'],
},
buildspec: ['buildspec'],
gitCloneDepth: ['gitCloneDepth'],
gitSubmodulesConfig: {
fetchSubmodules: ['fetchSubmodules'],
},
insecureSsl: ['insecureSsl'],
location: ['location'],
reportBuildStatus: ['reportBuildStatus'],
type: ['type'],
};
Properties
| Name | Type | Description |
|---|---|---|
| auth? | Auth | auth property. |
| buildspec? | string[] | buildspec property. |
| git | string[] | gitCloneDepth property. |
| git | Git | gitSubmodulesConfig property. |
| insecure | string[] | insecureSsl property. |
| location? | string[] | location property. |
| report | string[] | reportBuildStatus property. |
| type? | string[] | type property. |
auth?
Type:
Auth
(optional, default: Do not filter on this field)
auth property.
Specify an array of string values to match this event if the actual value of auth is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
buildspec?
Type:
string[]
(optional, default: Do not filter on this field)
buildspec property.
Specify an array of string values to match this event if the actual value of buildspec is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
gitCloneDepth?
Type:
string[]
(optional, default: Do not filter on this field)
gitCloneDepth property.
Specify an array of string values to match this event if the actual value of gitCloneDepth is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
gitSubmodulesConfig?
Type:
Git
(optional, default: Do not filter on this field)
gitSubmodulesConfig property.
Specify an array of string values to match this event if the actual value of gitSubmodulesConfig is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
insecureSsl?
Type:
string[]
(optional, default: Do not filter on this field)
insecureSsl property.
Specify an array of string values to match this event if the actual value of insecureSsl is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
location?
Type:
string[]
(optional, default: Do not filter on this field)
location property.
Specify an array of string values to match this event if the actual value of location is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
reportBuildStatus?
Type:
string[]
(optional, default: Do not filter on this field)
reportBuildStatus property.
Specify an array of string values to match this event if the actual value of reportBuildStatus is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
type?
Type:
string[]
(optional, default: Do not filter on this field)
type property.
Specify an array of string values to match this event if the actual value of type is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript