![]() |
![]()
| ![]() |
![]()
NAMEPaws::SSOOidc::StartDeviceAuthorization - Arguments for method StartDeviceAuthorization on Paws::SSOOidc DESCRIPTIONThis class represents the parameters used for calling the method StartDeviceAuthorization on the AWS SSO OIDC service. Use the attributes of this class as arguments to method StartDeviceAuthorization. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to StartDeviceAuthorization. SYNOPSISmy $oidc = Paws->service('SSOOidc'); my $StartDeviceAuthorizationResponse = $oidc->StartDeviceAuthorization( ClientId => 'MyClientId', ClientSecret => 'MyClientSecret', StartUrl => 'MyURI', ); # Results: my $DeviceCode = $StartDeviceAuthorizationResponse->DeviceCode; my $ExpiresIn = $StartDeviceAuthorizationResponse->ExpiresIn; my $Interval = $StartDeviceAuthorizationResponse->Interval; my $UserCode = $StartDeviceAuthorizationResponse->UserCode; my $VerificationUri = $StartDeviceAuthorizationResponse->VerificationUri; my $VerificationUriComplete = $StartDeviceAuthorizationResponse->VerificationUriComplete; # Returns a L<Paws::SSOOidc::StartDeviceAuthorizationResponse> object. Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see <https://docs.aws.amazon.com/goto/WebAPI/oidc/StartDeviceAuthorization> ATTRIBUTESREQUIRED ClientId => StrThe unique identifier string for the client that is registered with AWS SSO. This value should come from the persisted result of the RegisterClient API operation. REQUIRED ClientSecret => StrA secret string that is generated for the client. This value should come from the persisted result of the RegisterClient API operation. REQUIRED StartUrl => StrThe URL for the AWS SSO user portal. For more information, see Using the User Portal (https://docs.aws.amazon.com/singlesignon/latest/userguide/using-the-portal.html) in the AWS Single Sign-On User Guide. SEE ALSOThis class forms part of Paws, documenting arguments for method StartDeviceAuthorization in Paws::SSOOidc BUGS and CONTRIBUTIONSThe source code is located here: <https://github.com/pplu/aws-sdk-perl> Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>
|