GetProfileResourceAssociationCommand

Returns information about a specified Route 53 Profile resource association.

Example Syntax

Use a bare-bones client and the command you need to make an API call.

import { Route53ProfilesClient, GetProfileResourceAssociationCommand } from "@aws-sdk/client-route53profiles"; // ES Modules import
// const { Route53ProfilesClient, GetProfileResourceAssociationCommand } = require("@aws-sdk/client-route53profiles"); // CommonJS import
const client = new Route53ProfilesClient(config);
const input = { // GetProfileResourceAssociationRequest
  ProfileResourceAssociationId: "STRING_VALUE", // required
};
const command = new GetProfileResourceAssociationCommand(input);
const response = await client.send(command);
// { // GetProfileResourceAssociationResponse
//   ProfileResourceAssociation: { // ProfileResourceAssociation
//     Id: "STRING_VALUE",
//     Name: "STRING_VALUE",
//     OwnerId: "STRING_VALUE",
//     ProfileId: "STRING_VALUE",
//     ResourceArn: "STRING_VALUE",
//     ResourceType: "STRING_VALUE",
//     ResourceProperties: "STRING_VALUE",
//     Status: "COMPLETE" || "DELETING" || "UPDATING" || "CREATING" || "DELETED" || "FAILED",
//     StatusMessage: "STRING_VALUE",
//     CreationTime: new Date("TIMESTAMP"),
//     ModificationTime: new Date("TIMESTAMP"),
//   },
// };

GetProfileResourceAssociationCommand Input

Parameter
Type
Description
ProfileResourceAssociationId
Required
string | undefined

The ID of the profile resource association that you want to get information about.

GetProfileResourceAssociationCommand Output

Parameter
Type
Description
$metadata
Required
ResponseMetadata
Metadata pertaining to this request.
ProfileResourceAssociation
ProfileResourceAssociation | undefined

Information about the Profile resource association that you specified in a GetProfileResourceAssociation request.

Throws

Name
Fault
Details
AccessDeniedException
client

The current account doesn't have the IAM permissions required to perform the specified operation.

InvalidParameterException
client

One or more parameters in this request are not valid.

ResourceNotFoundException
client

The resource you are associating is not found.

ThrottlingException
client

The request was throttled. Try again in a few minutes.

ValidationException
client

You have provided an invalid command.

Route53ProfilesServiceException
Base exception class for all service exceptions from Route53Profiles service.