interface CfnArtifactMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SecurityAgent.CfnArtifactMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssecurityagent#CfnArtifactMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.securityagent.CfnArtifactMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_securityagent.CfnArtifactMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_securityagent » CfnArtifactMixinProps |
Properties for CfnArtifactPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_securityagent as securityagent } from '@aws-cdk/cfn-property-mixins';
const cfnArtifactMixinProps: securityagent.CfnArtifactMixinProps = {
agentSpaceId: 'agentSpaceId',
artifactContent: 'artifactContent',
artifactType: 'artifactType',
fileName: 'fileName',
};
Properties
| Name | Type | Description |
|---|---|---|
| agent | string | The unique identifier of the agent space to add the artifact to. |
| artifact | string | The binary content of the artifact to upload, encoded as a Base64 string. |
| artifact | string | The file type of the artifact. |
| file | string | The file name of the artifact. |
agentSpaceId?
Type:
string
(optional)
The unique identifier of the agent space to add the artifact to.
artifactContent?
Type:
string
(optional)
The binary content of the artifact to upload, encoded as a Base64 string.
artifactType?
Type:
string
(optional)
The file type of the artifact.
fileName?
Type:
string
(optional)
The file name of the artifact.

.NET
Go
Java
Python
TypeScript