Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/Twilio/Rest/Accounts/V1/Credential/AwsOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ namespace Twilio.Rest.Accounts.V1.Credential
{

/// <summary> Create a new AWS Credential </summary>
public class CreateAwsOptions : IOptions<AwsResource>
public class CreateAwsOptions : IOptions<AwsCreateResource>
{

///<summary> A string that contains the AWS access credentials in the format `<AWS_ACCESS_KEY_ID>:<AWS_SECRET_ACCESS_KEY>`. For example, `AKIAIOSFODNN7EXAMPLE:wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY` </summary>
Expand Down Expand Up @@ -101,7 +101,7 @@ public List<KeyValuePair<string, string>> GetParams()


/// <summary> Fetch the AWS credentials specified by the provided Credential Sid </summary>
public class FetchAwsOptions : IOptions<AwsResource>
public class FetchAwsOptions : IOptions<AwsFetchResource>
{

///<summary> The Twilio-provided string that uniquely identifies the AWS resource to fetch. </summary>
Expand Down Expand Up @@ -131,7 +131,7 @@ public List<KeyValuePair<string, string>> GetParams()


/// <summary> Retrieves a collection of AWS Credentials belonging to the account used to make the request </summary>
public class ReadAwsOptions : ReadOptions<AwsResource>
public class ReadAwsOptions : ReadOptions<AwsReadResource>
{


Expand All @@ -155,7 +155,7 @@ public List<KeyValuePair<string, string>> GetParams()
}

/// <summary> Modify the properties of a given Account </summary>
public class UpdateAwsOptions : IOptions<AwsResource>
public class UpdateAwsOptions : IOptions<AwsUpdateResource>
{

///<summary> The Twilio-provided string that uniquely identifies the AWS resource to update. </summary>
Expand Down
Loading
Loading