CfnArtifactProps

class aws_cdk.aws_securityagent.CfnArtifactProps(*, agent_space_id, artifact_type, file_name, artifact_content=None)

Bases: object

Properties 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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityagent-artifact.html

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityagent-artifact.html#cfn-securityagent-artifact-agentspaceid

artifact_content

The binary content of the artifact to upload, encoded as a Base64 string.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityagent-artifact.html#cfn-securityagent-artifact-artifactcontent

artifact_type

The file type of the artifact.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityagent-artifact.html#cfn-securityagent-artifact-artifacttype

file_name

The file name of the artifact.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityagent-artifact.html#cfn-securityagent-artifact-filename