interface Artifacts1
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodeBuild.Events.AWSAPICallViaCloudTrail.Artifacts1 |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodebuild/events#AWSAPICallViaCloudTrail_Artifacts1 |
Java | software.amazon.awscdk.mixins.preview.services.codebuild.events.AWSAPICallViaCloudTrail.Artifacts1 |
Python | aws_cdk.mixins_preview.aws_codebuild.events.AWSAPICallViaCloudTrail.Artifacts1 |
TypeScript | @aws-cdk/mixins-preview ยป aws_codebuild ยป events ยป AWSAPICallViaCloudTrail ยป Artifacts1 |
Type definition for Artifacts_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 artifacts1: codebuild_events.AWSAPICallViaCloudTrail.Artifacts1 = {
encryptionDisabled: ['encryptionDisabled'],
location: ['location'],
name: ['name'],
namespaceType: ['namespaceType'],
packaging: ['packaging'],
type: ['type'],
};
Properties
| Name | Type | Description |
|---|---|---|
| encryption | string[] | encryptionDisabled property. |
| location? | string[] | location property. |
| name? | string[] | name property. |
| namespace | string[] | namespaceType property. |
| packaging? | string[] | packaging property. |
| type? | string[] | type property. |
encryptionDisabled?
Type:
string[]
(optional, default: Do not filter on this field)
encryptionDisabled property.
Specify an array of string values to match this event if the actual value of encryptionDisabled 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.
name?
Type:
string[]
(optional, default: Do not filter on this field)
name property.
Specify an array of string values to match this event if the actual value of name is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
namespaceType?
Type:
string[]
(optional, default: Do not filter on this field)
namespaceType property.
Specify an array of string values to match this event if the actual value of namespaceType is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
packaging?
Type:
string[]
(optional, default: Do not filter on this field)
packaging property.
Specify an array of string values to match this event if the actual value of packaging 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