SecurityKeyReference

class aws_cdk.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 import aws_connect as connect

security_key_reference = 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.