SecurityKeyReference

class aws_cdk.interfaces.aws_connect.SecurityKeyReference(*, association_id, instance_id)

Bases: object

A reference to a SecurityKey resource.

Parameters:
  • association_id (str) – The AssociationId of the SecurityKey resource.

  • instance_id (str) – The InstanceId of the SecurityKey resource.

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.interfaces import aws_connect as interfaces_aws_connect

security_key_reference = interfaces_aws_connect.SecurityKeyReference(
    association_id="associationId",
    instance_id="instanceId"
)

Attributes

association_id

The AssociationId of the SecurityKey resource.

instance_id

The InstanceId of the SecurityKey resource.