SessionLoggerAssociation constructor

SessionLoggerAssociation(
  1. String name, {
  2. SessionLoggerAssociationArgs? args,
  3. CustomResourceOptions? options,
})

Creates a new SessionLoggerAssociation. name The Pulumi resource name. args Arguments used to configure this SessionLoggerAssociation. The set of arguments for SessionLoggerAssociation. options Resource options controlling this resource's behavior.

Implementation

SessionLoggerAssociation(
  String name, {
  SessionLoggerAssociationArgs? args,
  pulumi.CustomResourceOptions? options,
}) : super(
        'aws:workspacesweb/sessionLoggerAssociation:SessionLoggerAssociation',
        name,
        pulumi.Input.mapToInputs(args?.toMap() ?? const {}),
        pulumi.CustomResourceOptions(version: '7.44.0').merge(options),
      ) {
  portalArn = registerOutput<String>('portalArn');
  region = registerOutput<String>('region');
  sessionLoggerArn = registerOutput<String>('sessionLoggerArn');
}