CfnArtifactMixinProps
- class aws_cdk.cfn_property_mixins.aws_securityagent.CfnArtifactMixinProps(*, agent_space_id=None, artifact_content=None, artifact_type=None, file_name=None)
Bases:
objectProperties for CfnArtifactPropsMixin.
- Parameters:
agent_space_id (
Optional[str]) – The unique identifier of the agent space to add the artifact to.artifact_content (
Optional[str]) – The binary content of the artifact to upload, encoded as a Base64 string.artifact_type (
Optional[str]) – The file type of the artifact.file_name (
Optional[str]) – The file name of the artifact.
- 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.cfn_property_mixins import aws_securityagent as securityagent cfn_artifact_mixin_props = securityagent.CfnArtifactMixinProps( agent_space_id="agentSpaceId", artifact_content="artifactContent", artifact_type="artifactType", file_name="fileName" )
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.