CfnArtifactProps
- class aws_cdk.aws_securityagent.CfnArtifactProps(*, agent_space_id, artifact_type, file_name, artifact_content=None)
Bases:
objectProperties for defining a
CfnArtifact.- Parameters:
agent_space_id (
str) – The unique identifier of the agent space to add the artifact to.artifact_type (
str) – The file type of the artifact.file_name (
str) – The file name of the artifact.artifact_content (
Optional[str]) – The binary content of the artifact to upload, encoded as a Base64 string.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_securityagent as securityagent cfn_artifact_props = securityagent.CfnArtifactProps( agent_space_id="agentSpaceId", artifact_type="artifactType", file_name="fileName", # the properties below are optional artifact_content="artifactContent" )
Attributes
- agent_space_id
The unique identifier of the agent space to add the artifact to.
- artifact_content
The binary content of the artifact to upload, encoded as a Base64 string.
- artifact_type
The file type of the artifact.
- file_name
The file name of the artifact.